diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-06-03 18:29:57 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-06-03 18:29:57 +0000 |
commit | a949d2d14888f0b731b2363e52291161fa9575ee (patch) | |
tree | 9d55ea118fa5a720d56f7b6e88e1b9cf0c036369 /npc/nekkio.txt | |
parent | e3b6a8c0629f1a9a7bd05bd3a7ba7a342905ec77 (diff) | |
download | serverdata-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/nekkio.txt')
-rw-r--r-- | npc/nekkio.txt | 88 |
1 files changed, 88 insertions, 0 deletions
diff --git a/npc/nekkio.txt b/npc/nekkio.txt new file mode 100644 index 00000000..ccd6e393 --- /dev/null +++ b/npc/nekkio.txt @@ -0,0 +1,88 @@ +new_3-1.gat,49,69,0 script Nekkio 108,{ + 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 "[Nekkio]"; + mes "In the outskirts of Tulimshir, there lies a Red scorpion. I need a favor if anyone can give me one."; + next; + goto red; +L_2: + mes "[Nekkio]"; + mes "When you venture to the outskirts of Tulimshir, you will spot a Red Scorpion. Will you help me get one?"; + next; + goto red; +L_3: + mes "[Nekkio]"; + mes "The red scorpions stinger carries many properties used in herbs."; + next; + goto red; +L_4: + mes "[Nekkio]"; + 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 "[Nekkio]"; + mes "I need you to slaughter the Red Scorpion found outside of Tulimshir and bring me 5 [Red Stingers]"; + next; + goto set1; +K_2: + mes "[Nekkio]"; + mes "I heard a while ago that the Stinger of the Red scorpion can be used for medical purposes. I need you to help me get 5 [Red Stingers]"; + next; + goto set1; +K_3: + mes "[Nekkio]"; + mes "Bring me 5 [Red Stingers] and i will reward you greatly"; + next; + goto set1; + +set1: + set Scorp,1; + mes "[Nekkio]"; + mes "Please bring them to me!"; + close; + +reas: + if(countitem(517) >= 5) goto have; + mes "[Nekkio]"; + mes "Please hurry and bring me 5 [Red Stingers]"; + close; + +have: + mes "[Nekkio]"; + mes "Excelent!, you have brought me 5 [Scorpion Stingers]!"; + delitem 517,5; + next; + mes "[Nekkio]"; + mes "Here you go, heres your reward!"; + mes "+Got Bow"; + mes "+Got Arrows 100"; + getitem 1200,1; + getitem 1199,100; + set Scorp,2; + close; + +done: + mes "[Nekkio]"; + mes "Thankyou for all of your help!"; + close; + +L_N: + close; +} |