summaryrefslogtreecommitdiff
path: root/npc/quests/newgears/traveler.txt
diff options
context:
space:
mode:
authorLupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec>2004-12-13 18:19:18 +0000
committerLupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec>2004-12-13 18:19:18 +0000
commitfd37fb3ca86a5cd557f137ba9d9c002c464e2250 (patch)
tree5ab87b987f585a7716ac03fa4efbebdbda3db330 /npc/quests/newgears/traveler.txt
parent5b4ed319549fcd62f8d63b9ce66c61bc7f2c3eec (diff)
downloadhercules-fd37fb3ca86a5cd557f137ba9d9c002c464e2250.tar.gz
hercules-fd37fb3ca86a5cd557f137ba9d9c002c464e2250.tar.bz2
hercules-fd37fb3ca86a5cd557f137ba9d9c002c464e2250.tar.xz
hercules-fd37fb3ca86a5cd557f137ba9d9c002c464e2250.zip
some fixes of coords, ingredients (sashimi Knife -> Raw Fish "Sashimi")
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@559 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/quests/newgears/traveler.txt')
-rw-r--r--npc/quests/newgears/traveler.txt9
1 files changed, 5 insertions, 4 deletions
diff --git a/npc/quests/newgears/traveler.txt b/npc/quests/newgears/traveler.txt
index 68e9bb886..a31177ad1 100644
--- a/npc/quests/newgears/traveler.txt
+++ b/npc/quests/newgears/traveler.txt
@@ -4,7 +4,7 @@
//= Halca (1.0)
//= Mass Zero (1.1)
//===== Current Version: =====================================
-//= 1.3
+//= 1.4
//===== Compatible With: =====================================
//= Any eAthena Version.
//===== Description: =========================================
@@ -13,6 +13,7 @@
//= 1.2 Fixed wrong labels, added missing text
//= added missing delitem, fixed names, item amount [Lupus]
//= 1.3 Fixed possible exploit [Lupus]
+//= 1.4 Fixed ingredients: Sashimi knife->Raw Fish (Sashimi) [Lupus]
//============================================================
morocc.gat,274,79,6 script Traveler 807,{
@@ -49,7 +50,7 @@ M_N2:
mes "[Traveler]";
mes "Gimme 1 Rotten Fish,";
mes "300 Rotten Scales,";
- mes "50 Sashimi,";
+ mes "50 Raw Fish (Sashimi, not a knife),";
mes "1 Fish Tail,";
mes "and 100 Sticky Mucus";
next;
@@ -57,12 +58,12 @@ M_N2:
mes "Got these items?";
menu "Yes",-,"No.",M_EXIT;
- if ((countitem(624) < 1) || (countitem(959) < 300) || (countitem(1144) < 50) || (countitem(1023) < 1) || (countitem(938) < 100)) GOTO L_NOITEM; //Items: Rotten Fish, Stinky Scale, Sashimi, Fish Tail, Sticky Mucus,
+ if ((countitem(624) < 1) || (countitem(959) < 300) || (countitem(544) < 50) || (countitem(1023) < 1) || (countitem(938) < 100)) GOTO L_NOITEM; //Items: Rotten Fish, Stinky Scale, Sashimi, Fish Tail, Sticky Mucus,
mes "[Traveler]";
mes "Okay, thanks.";
delitem 624,1;//Items: Rotten Fish,
delitem 959,300;//Items: Stinky Scale,
- delitem 1144,50;//Items: Sashimi,
+ delitem 544,50;//Items: Raw Fish,
delitem 1023,1;//Items: Fish Tail,
delitem 938,100;//Items: Sticky Mucus,
next;