diff options
Diffstat (limited to 'world/map/npc/009-3')
-rw-r--r-- | world/map/npc/009-3/sword.txt | 4 | ||||
-rw-r--r-- | world/map/npc/009-3/warp.txt | 4 |
2 files changed, 5 insertions, 3 deletions
diff --git a/world/map/npc/009-3/sword.txt b/world/map/npc/009-3/sword.txt index df4adeb4..f0517e96 100644 --- a/world/map/npc/009-3/sword.txt +++ b/world/map/npc/009-3/sword.txt @@ -126,7 +126,7 @@ L_L2_W11: mes "\"Thou hast returned. That must mean that thy wish to learn the magic of war is still alive?\""; next; menu - "No, I just wanted to say `hi'.", L_sayhi, + "No, I just wanted to say `hi'.", L_farewell, "Yes, teach me more!", L_Next2; L_Next2: @@ -165,7 +165,7 @@ L_lacking_mobpoints: mes "\"Thou lackest the monster points needed to prove thy worthiness. I shall not reveal more to thee until thou hast slain more monsters.\""; close; -L_sayhi: +L_farewell: mes "[Magic Sword]"; mes "\"Please leave me in peace.\""; close; diff --git a/world/map/npc/009-3/warp.txt b/world/map/npc/009-3/warp.txt index db1146e8..bc828df4 100644 --- a/world/map/npc/009-3/warp.txt +++ b/world/map/npc/009-3/warp.txt @@ -8,7 +8,9 @@ L_Next: if (Zeny < 150) goto L_NotEnoughMoney; - goto L_Pay; + if (Zeny >= 150) + goto L_Pay; + goto L_Exit; L_Exit: close; |