summaryrefslogtreecommitdiff
path: root/npc/001-1_Tulimshar/mikhail.txt
diff options
context:
space:
mode:
authorWombat <hpwombat@yahoo.com>2010-08-18 21:02:01 -0400
committerWombat <hpwombat@yahoo.com>2010-08-18 21:02:01 -0400
commit0b9235d0865509feb9ef97aa197204293cee0b1f (patch)
tree719ddcf0441486774d0b827fb5a36e7e0a5b7ec8 /npc/001-1_Tulimshar/mikhail.txt
parent75dfdd443d6dbe9bd556debeb1c50d3000d95967 (diff)
downloadserverdata-0b9235d0865509feb9ef97aa197204293cee0b1f.tar.gz
serverdata-0b9235d0865509feb9ef97aa197204293cee0b1f.tar.bz2
serverdata-0b9235d0865509feb9ef97aa197204293cee0b1f.tar.xz
serverdata-0b9235d0865509feb9ef97aa197204293cee0b1f.zip
Low Level Tulimshar Release
News, Small Fixes, Tulimshar Related Quests, Sandstorm Mob Changes Expensive Hurnscald Warp NPC
Diffstat (limited to 'npc/001-1_Tulimshar/mikhail.txt')
-rwxr-xr-xnpc/001-1_Tulimshar/mikhail.txt60
1 files changed, 60 insertions, 0 deletions
diff --git a/npc/001-1_Tulimshar/mikhail.txt b/npc/001-1_Tulimshar/mikhail.txt
new file mode 100755
index 00000000..6946f7f5
--- /dev/null
+++ b/npc/001-1_Tulimshar/mikhail.txt
@@ -0,0 +1,60 @@
+//
+
+001-1.gat,50,46,0 script Mikhail 120,{
+ if (TMW_Quest == 6) goto L_Done;
+ if (TMW_Quest == 5) goto L_Progress;
+ if (TMW_Quest == 4) goto L_Start;
+
+ mes "[Mikhail]";
+ mes "\"Hello...\"";
+ close;
+
+L_Start:
+ mes "[Mikhail]";
+ mes "\"My grandma sent me to get five maggot slimes from the maggots in the desert, but they scare me so bad!\"";
+ next;
+ mes "\"You look like a nice person. Would you go get them for me?\"";
+ menu
+ "Of course, I'll go get you that.", L_accept,
+ "I got other things to do right now.", L_close;
+ close;
+
+L_close:
+ close;
+
+L_accept:
+ mes "[Mikhail]";
+ mes "\"Thank you so much! I'll wait for you here.\"";
+ set TMW_Quest, 5;
+ close;
+
+L_Progress:
+ mes "[Mikhail]";
+ mes "\"Did you bring me the five maggot slimes i need?\"";
+ next;
+ menu
+ "Yes, here they are boy!", L_try,
+ "Not yet, I'll be back soon.", L_close;
+ close;
+
+L_try:
+ if countitem("MaggotSlime") >= 5 goto L_get;
+ mes "[Mikhail]";
+ mes "\"It doesn't look like you have them all...\"";
+ close;
+
+L_get:
+ delitem "MaggotSlime", 5;
+ set TMW_Quest, 6;
+ mes "[Mikhail]";
+ mes "\"Thank you so much! I can get back to my grandma now!\"";
+ next;
+ getexp 100, 0;
+ mes "You get 100 xp.";
+ close;
+
+L_Done:
+ mes "[Mikhail]";
+ mes "\"Thanks for helping me getting those maggot slimes!\"";
+ close;
+