diff options
author | wushin <pasekei@gmail.com> | 2014-04-11 14:32:22 -0500 |
---|---|---|
committer | wushin <pasekei@gmail.com> | 2014-04-15 20:26:28 -0500 |
commit | 47f790759ea3ea56d31e000bc3f3b7f142ee802d (patch) | |
tree | 369dc32bddb447076c5cf9298f6624366aa03ce2 /world/map/npc/009-3 | |
parent | 6e9543af67c5e027269bfc32e9c6f36111f3832a (diff) | |
download | serverdata-47f790759ea3ea56d31e000bc3f3b7f142ee802d.tar.gz serverdata-47f790759ea3ea56d31e000bc3f3b7f142ee802d.tar.bz2 serverdata-47f790759ea3ea56d31e000bc3f3b7f142ee802d.tar.xz serverdata-47f790759ea3ea56d31e000bc3f3b7f142ee802d.zip |
Npcs remaining script fixes
Npcs changed for travel
Npcs changed for new maps
Npcs changed for basic crypts
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; |