diff options
author | wushin <pasekei@gmail.com> | 2013-10-25 12:24:08 -0500 |
---|---|---|
committer | wushin <pasekei@gmail.com> | 2013-10-25 12:24:08 -0500 |
commit | 5d34457becf1d1bbdda00c950d76b538d322c7bc (patch) | |
tree | ef5490a7d484e1f3d0b205bb8916eaf7ea097b6b /world/map/npc/042-2/tanisha.txt | |
parent | b55a4543d92a804473cb639193aaa9b6a83edcce (diff) | |
download | serverdata-5d34457becf1d1bbdda00c950d76b538d322c7bc.tar.gz serverdata-5d34457becf1d1bbdda00c950d76b538d322c7bc.tar.bz2 serverdata-5d34457becf1d1bbdda00c950d76b538d322c7bc.tar.xz serverdata-5d34457becf1d1bbdda00c950d76b538d322c7bc.zip |
Sling Shot added to starting area
Sling Shot added to NE Tulimshar Market
Diffstat (limited to 'world/map/npc/042-2/tanisha.txt')
-rw-r--r-- | world/map/npc/042-2/tanisha.txt | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/world/map/npc/042-2/tanisha.txt b/world/map/npc/042-2/tanisha.txt index 437099dd..de93b8d5 100644 --- a/world/map/npc/042-2/tanisha.txt +++ b/world/map/npc/042-2/tanisha.txt @@ -50,7 +50,7 @@ L_Maggots: L_Fight_Again: mes "\"Ok, listen what to do."; - mes "Equip the knife and kill the maggots.\""; + mes "Equip a weapon and kill the maggots.\""; next; mes "\"Press A to focus on a monster. With X you can focus and start attacking the same time."; mes "But it also works to click on the monster with your mouse.\""; @@ -64,7 +64,15 @@ L_Fight_Again: // The getitem must be in the same place as set tanisha, 2; // since it was moved to after L_Fight_Again, add it conditionally if (tanisha == 1) - getitem "Knife", 1; + goto L_GetFightItems; + goto L_ContinueFight; + +L_GetFightItems: + getitem "Knife", 1; + getitem "SlingShot", 1; + getitem "SlingBullet", 100; + +L_ContinueFight: set tanisha, 2; set @Maggot_Kills, 0; set @time, 0; |