summaryrefslogtreecommitdiff
path: root/npc
diff options
context:
space:
mode:
authorEugenio Favalli <elvenprogrammer@gmail.com>2005-08-31 20:02:49 +0000
committerEugenio Favalli <elvenprogrammer@gmail.com>2005-08-31 20:02:49 +0000
commit73b13661b62893e79c485fce96479609784bfcb4 (patch)
treec84e022404a0a37a215f7e2aec98f6d8264fa918 /npc
parente77849ede8cc343d526c97061c4eb8021fe54c03 (diff)
downloadserverdata-73b13661b62893e79c485fce96479609784bfcb4.tar.gz
serverdata-73b13661b62893e79c485fce96479609784bfcb4.tar.bz2
serverdata-73b13661b62893e79c485fce96479609784bfcb4.tar.xz
serverdata-73b13661b62893e79c485fce96479609784bfcb4.zip
A mysterious script
Diffstat (limited to 'npc')
-rw-r--r--npc/tulimshar/casino.txt2
-rw-r--r--npc/tulimshar/soulthief.txt41
2 files changed, 42 insertions, 1 deletions
diff --git a/npc/tulimshar/casino.txt b/npc/tulimshar/casino.txt
index d7062560..decd5b16 100644
--- a/npc/tulimshar/casino.txt
+++ b/npc/tulimshar/casino.txt
@@ -358,7 +358,7 @@ L_NoCoin:
close;
L_Lost:
- mes "I'm sorry, you lost."
+ mes "I'm sorry, you lost";
close;
}
diff --git a/npc/tulimshar/soulthief.txt b/npc/tulimshar/soulthief.txt
new file mode 100644
index 00000000..76465bd8
--- /dev/null
+++ b/npc/tulimshar/soulthief.txt
@@ -0,0 +1,41 @@
+new_1-1.gat,24,24,0 script SoulThief 103,{
+
+ if (class == 1) goto L_Soul;
+
+ mes "Psss hey would you like to have more power?";
+ next;
+
+ menu "You fool, that's not possible",L_End,"I'm listening...",L_Go;
+
+L_End:
+ close;
+
+L_Go:
+ mes "I can give you ancient powers that will let you become the greatest warrior in The Mana World, or the best merchant.";
+ mes "But everything has got his price...";
+ next;
+
+ mes "Oh nothing important nor expensive.";
+ mes "Just your soul!";
+ next;
+
+ menu "My soul? Here it is",L_Soul,"I need a better explanation!",L_Explain;
+
+L_Explain:
+ mes "Well there's a very small possibility that your player will be translated into the new server.";
+ mes "I said a very very small possibility.";
+ mes "Players without a soul instead will be lost forever...";
+ mes "Come on, you won't loose that much!";
+ next;
+
+ menu "Hmmm ok, I guess you can take it.",L_Soul,"Maybe I'll think about it a bit more",L_Think;
+
+L_Think:
+ mes "I know you'll come here again when you'll get killed by a maggot, begging me to help you";
+ close;
+
+L_Soul:
+ mes "Hrhrhr, your soul is finally mine!";
+ jobchange 1;
+ close;
+} \ No newline at end of file