summaryrefslogtreecommitdiff
path: root/npc/tulimshar/children.txt
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2005-06-03 18:29:57 +0000
committerBjørn Lindeijer <bjorn@lindeijer.nl>2005-06-03 18:29:57 +0000
commita949d2d14888f0b731b2363e52291161fa9575ee (patch)
tree9d55ea118fa5a720d56f7b6e88e1b9cf0c036369 /npc/tulimshar/children.txt
parente3b6a8c0629f1a9a7bd05bd3a7ba7a342905ec77 (diff)
downloadserverdata-a949d2d14888f0b731b2363e52291161fa9575ee.tar.gz
serverdata-a949d2d14888f0b731b2363e52291161fa9575ee.tar.bz2
serverdata-a949d2d14888f0b731b2363e52291161fa9575ee.tar.xz
serverdata-a949d2d14888f0b731b2363e52291161fa9575ee.zip
A bunch of new scripts and script updates by Bear.
Diffstat (limited to 'npc/tulimshar/children.txt')
-rw-r--r--npc/tulimshar/children.txt96
1 files changed, 88 insertions, 8 deletions
diff --git a/npc/tulimshar/children.txt b/npc/tulimshar/children.txt
index 9157be4c..10fb18f9 100644
--- a/npc/tulimshar/children.txt
+++ b/npc/tulimshar/children.txt
@@ -1,13 +1,93 @@
new_3-1.gat,57,70,0 script Child1 108,{
-mes "[Child]";
-mes "Maggots are soo slimey ";
-close;
+ set @TEMP,rand(7);
+ if(@TEMP == 1) goto L_1;
+ if(@TEMP == 2) goto L_2;
+ if(@TEMP == 3) goto L_3;
+ if(@TEMP == 4) goto L_4;
+ if(@TEMP == 5) goto L_5;
+ if(@TEMP == 6) goto L_6;
+ if(@TEMP == 7) goto L_7;
+ if(@TEMP == 0) goto L_1;
+
+L_1:
+ mes "[Child]";
+ mes "Maggots are soo slimey!";
+ close;
+
+L_2:
+ mes "[Child]";
+ mes "Want to play ball with me?";
+ close;
+
+L_3:
+ mes "[Child]";
+ mes "Monsters roam the land, i hate scorpions!";
+ close;
+
+L_4:
+ mes "[Child]";
+ mes "When i grow up, I want to be strong enough to kill a scorpion!";
+ close;
+
+L_5:
+ mes "[Child]";
+ mes "Items dropped by monsters can be sold for *Currency name here*";
+ close;
+
+L_6:
+ mes "[Child]";
+ mes "Items such as foods, can be eaten to regain Health Points.";
+ close;
+
+L_7:
+ mes "[Child]";
+ mes "I want to be a Doctor when i grow up!";
+ close;
}
new_3-1.gat,120,33,0 script Child2 103,{
-mes "[Child]";
-mes "Ever been pinched by a scorpion?";
-next;
-mes "It Hurts...";
-close;
+ set @TEMP,rand(7);
+ if(@TEMP == 1) goto L_1;
+ if(@TEMP == 2) goto L_2;
+ if(@TEMP == 3) goto L_3;
+ if(@TEMP == 4) goto L_4;
+ if(@TEMP == 5) goto L_5;
+ if(@TEMP == 6) goto L_6;
+ if(@TEMP == 7) goto L_7;
+ if(@TEMP == 0) goto L_1;
+
+L_1:
+ mes "[Child]";
+ mes "If i learned anything from school, Grenxen founded Tulimshar.";
+ close;
+
+L_2:
+ mes "[Child]";
+ mes "When i was picking rocks from the field, i saw a red scorpion.";
+ close;
+
+L_3:
+ mes "[Child]";
+ mes "Its polite to state your name before talking to anyone.";
+ close;
+
+L_4:
+ mes "[Child]";
+ mes "I have a Scorpion Doll!";
+ close;
+
+L_5:
+ mes "[Child]";
+ mes "I carry spare Cactus Juices while on the field.";
+ close;
+
+L_6:
+ mes "[Child]";
+ mes "Items such as foods, can be eaten to regain Health Points.";
+ close;
+
+L_7:
+ mes "[Child]";
+ mes "Grenxen is the Demon that founded Tulimshar.";
+ close;
}