diff options
Diffstat (limited to 'world/map/npc/021-1/eurni.txt')
-rw-r--r-- | world/map/npc/021-1/eurni.txt | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/world/map/npc/021-1/eurni.txt b/world/map/npc/021-1/eurni.txt deleted file mode 100644 index e24d774c..00000000 --- a/world/map/npc/021-1/eurni.txt +++ /dev/null @@ -1,45 +0,0 @@ -// - -021-1.gat,141,113,0|script|Eurni|136 -{ - set @halloween_npc_id, $@halloween_npc_eurni; - callfunc "TrickOrTreat"; - - if (BaseLevel < 10) goto L_TooYoung; - if (Zeny < 10000) goto L_NoMoney; - - mes "[Eurni the Surgeon]"; - mes "\"Are you tired of being what you are?\""; - next; - - mes "[Eurni the Surgeon]"; - mes "\"Would you maybe be interested in a sex change?\""; - 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."; - next; - menu - "Please do, my dear...", L_Change, - "Leave alone my family treasure!", L_Close; - -L_Change: - if (Zeny < 10000) - goto L_NoMoney; - set Zeny, Zeny - 10000; - changesex; - close; - -L_TooYoung: - mes "[Eurni the Surgeon]"; - mes "\"Move along, kid.\""; - close; - -L_NoMoney: - mes "[Eurni the Surgeon]"; - mes "\"You don't have enough to pay for my services.\""; - close; - -L_Close: - close; -} |