summaryrefslogtreecommitdiff
path: root/npc/021-1_Tulimshar
diff options
context:
space:
mode:
authorJared Adams <jaxad0127@gmail.com>2009-03-09 13:02:52 -0600
committerJared Adams <jaxad0127@gmail.com>2009-03-09 13:05:44 -0600
commit1ad4140a3a0d3a8aca5c90bff2e46781f6bde3b5 (patch)
tree423679ff288d99ea57fab351faf665a1a0efc719 /npc/021-1_Tulimshar
parent167a4ef2fd6af2a5ac8d9b9058673387714c2a11 (diff)
downloadserverdata-1ad4140a3a0d3a8aca5c90bff2e46781f6bde3b5.tar.gz
serverdata-1ad4140a3a0d3a8aca5c90bff2e46781f6bde3b5.tar.bz2
serverdata-1ad4140a3a0d3a8aca5c90bff2e46781f6bde3b5.tar.xz
serverdata-1ad4140a3a0d3a8aca5c90bff2e46781f6bde3b5.zip
Adjust the sex changers
Xanith has been removed for now. Cost for sex change is 10k GP and you need to be atleast level 10. Server message has better wording.
Diffstat (limited to 'npc/021-1_Tulimshar')
-rw-r--r--npc/021-1_Tulimshar/eurni.txt22
1 files changed, 16 insertions, 6 deletions
diff --git a/npc/021-1_Tulimshar/eurni.txt b/npc/021-1_Tulimshar/eurni.txt
index 988feca9..1edfc94e 100644
--- a/npc/021-1_Tulimshar/eurni.txt
+++ b/npc/021-1_Tulimshar/eurni.txt
@@ -1,9 +1,8 @@
//
021-1.gat,141,113,0 script Eurni 136,{
- mes "[Eurni the Surgeon]";
- mes "\"No sex changes right now, sorry.\"";
- close;
+ if (BaseLevel < 10) goto L_TooYoung;
+ if (zeny < 10000) goto L_No_Money;
mes "[Eurni the Surgeon]";
mes "\"Are you tired of being what you are?\"";
@@ -14,8 +13,7 @@
next;
mes "[Server]";
- mes "\"Warning: All the character in your account will get the sex changed.\"";
- mes "\"Also you probably will require to restart the client to notice a change.\"";
+ 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
@@ -24,6 +22,18 @@
close;
L_Change:
-// changesex;
+ if (zeny < 10000) goto L_No_Money;
+ 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;
}