diff options
author | Nick Ashley <nick@shley.us> | 2015-04-12 09:22:38 -0400 |
---|---|---|
committer | Nick Ashley <nick@shley.us> | 2015-04-20 21:40:17 -0400 |
commit | 364f6111306eb4fcdd8edc98dae1ae0727dba712 (patch) | |
tree | 297942f8c68675338bdd062ff84ef9e659126333 /world/map/npc/002-2/eurni.txt | |
parent | 99d73066bf2a7fb4911e79b52a48ba913a2aa459 (diff) | |
download | serverdata-364f6111306eb4fcdd8edc98dae1ae0727dba712.tar.gz serverdata-364f6111306eb4fcdd8edc98dae1ae0727dba712.tar.bz2 serverdata-364f6111306eb4fcdd8edc98dae1ae0727dba712.tar.xz serverdata-364f6111306eb4fcdd8edc98dae1ae0727dba712.zip |
Various dialog fixes in Tulim
viz., the Kylian quest, the tombstones, and various other NPCs
Diffstat (limited to 'world/map/npc/002-2/eurni.txt')
-rw-r--r-- | world/map/npc/002-2/eurni.txt | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/world/map/npc/002-2/eurni.txt b/world/map/npc/002-2/eurni.txt index c63a71eb..87df4dc2 100644 --- a/world/map/npc/002-2/eurni.txt +++ b/world/map/npc/002-2/eurni.txt @@ -2,31 +2,32 @@ 002-2,22,77,0|script|Eurni|136 { + set @SERVICES_ZENY, 10000; + set @halloween_npc_id, $@halloween_npc_eurni; callfunc "TrickOrTreat"; if (BaseLevel < 10) goto L_TooYoung; - if (Zeny < 10000) goto L_NoMoney; + if (Zeny < @SERVICES_ZENY) goto L_NoMoney; mes "[Eurni the Surgeon]"; - mes "\"Are you tired of being what you are?\""; + mes "\"Are you tired of who you are?\""; next; - - mes "[Eurni the Surgeon]"; - mes "\"Would you maybe be interested in a sex change?\""; + mes "\"Would you be interested in changing your sex?"; + mes "It'll cost ##B" + @SERVICES_ZENY + " GP##b.\""; next; mes "[Server]"; - mes "Warning: All characters under this login will be changed. Once it's done, you will be kicked from the server. Don't panic, as everything is fine."; + mes "Warning: All characters under this login will be changed. Once it's done, you will be kicked from the server. Don't panic; this is normal."; next; menu - "Please do, my dear...", L_Change, - "Leave alone my family treasure!", L_Close; + "Please do.", L_Change, + "Leave my family treasures alone!", L_Close; L_Change: - if (Zeny < 10000) + if (Zeny < @SERVICES_ZENY) goto L_NoMoney; - set Zeny, Zeny - 10000; + set Zeny, Zeny - @SERVICES_ZENY; changesex; close; @@ -37,7 +38,7 @@ L_TooYoung: L_NoMoney: mes "[Eurni the Surgeon]"; - mes "\"You don't have enough to pay for my services.\""; + mes "\"You don't have the kind of money to pay for my services.\""; close; L_Close: |