summaryrefslogtreecommitdiff
path: root/npc/new_3-1-tulimshar/sandra.txt
diff options
context:
space:
mode:
authorJared Adams <jaxad0127@gmail.com>2008-11-19 13:38:20 +0000
committerJared Adams <jaxad0127@gmail.com>2008-11-19 13:38:20 +0000
commit1195ea1eb880ca9c77f2471e036d8bb8009fd70d (patch)
tree888b3dded2573c38c92acb7d6faf528d02abfd8b /npc/new_3-1-tulimshar/sandra.txt
parentc35d7a43946974cc85497980f4542f0b8abc1a56 (diff)
downloadserverdata-1195ea1eb880ca9c77f2471e036d8bb8009fd70d.tar.gz
serverdata-1195ea1eb880ca9c77f2471e036d8bb8009fd70d.tar.bz2
serverdata-1195ea1eb880ca9c77f2471e036d8bb8009fd70d.tar.xz
serverdata-1195ea1eb880ca9c77f2471e036d8bb8009fd70d.zip
Change all script folders
Script files fixes are comming
Diffstat (limited to 'npc/new_3-1-tulimshar/sandra.txt')
-rw-r--r--npc/new_3-1-tulimshar/sandra.txt81
1 files changed, 0 insertions, 81 deletions
diff --git a/npc/new_3-1-tulimshar/sandra.txt b/npc/new_3-1-tulimshar/sandra.txt
deleted file mode 100644
index 4922bd60..00000000
--- a/npc/new_3-1-tulimshar/sandra.txt
+++ /dev/null
@@ -1,81 +0,0 @@
-new_3-1.gat,110,71,0 script Sandra 114,{
- if(Scorp == 2) goto done;
- if(Scorp == 1) goto reas;
- set @TEMP,rand(3);
- if(@TEMP == 1) goto L_1;
- if(@TEMP == 2) goto L_2;
- if(@TEMP == 3) goto L_3;
- if(@TEMP == 0) goto L_4;
-L_1:
- mes "[Sandra]";
- mes "\"In the outskirts of Tulimshar, there wanders a red scorpion. I need a favor, please help me.\"";
- next;
- goto red;
-L_2:
- mes "[Sandra]";
- mes "\"When you venture in the outskirts of Tulimshar, you can spot a red scorpion. Will you help me kill one?\"";
- next;
- goto red;
-L_3:
- mes "[Sandra]";
- mes "\"The red scorpion stinger carries many properties used in potions.\"";
- next;
- goto red;
-L_4:
- mes "[Sandra]";
- mes "\"You look sturdy enough, will you help me get something?\"";
- next;
- goto red;
-red:
- menu "Yes",L_kl,"No",L_N;
-L_kl:
- if(@TEMP == 1) goto K_1;
- if(@TEMP == 2) goto K_2;
- if(@TEMP == 3) goto K_3;
- if(@TEMP == 0) goto K_1;
-K_1:
- mes "[Sandra]";
- mes "\"I need you to slaughter the red scorpion found outside of Tulimshar and bring me 5 [Red Stingers].\"";
- next;
- goto set1;
-K_2:
- mes "[Sandra]";
- mes "\"I heard a while ago that the stinger of a red scorpion can be used for medical purposes. I need you to help me get 5 [Red Stingers].\"";
- next;
- goto set1;
-K_3:
- mes "[Sandra]";
- mes "\"Bring me 5 [Red Stingers] and i will reward you greatly.\"";
- next;
- goto set1;
-set1:
- set Scorp,1;
- mes "[Sandra]";
- mes "\"Please bring me them!\"";
- close;
-reas:
- if(countitem(517) >= 5) goto have;
- mes "[Sandra]";
- mes "\"Please hurry and bring me 5 [Red Stingers].\"";
- close;
-have:
- mes "[Sandra]";
- mes "\"Excellent!";
- mes "You brought me 5 [Red Stingers]!\"";
- delitem 517,5;
- next;
- mes "[Sandra]";
- mes "\"Here you go, your reward!\"";
- mes "+Got Bow";
- mes "+Got Arrows 100";
- getitem 1200,1;
- getitem 1199,100;
- set Scorp,2;
- close;
-done:
- mes "[Sandra]";
- mes "\"Thank you for all your help!\"";
- close;
-L_N:
- close;
-}