diff options
author | Playtester <Playtester@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-07-14 21:33:04 +0000 |
---|---|---|
committer | Playtester <Playtester@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-07-14 21:33:04 +0000 |
commit | 01a84660594f5756e9a9a24253007f235074eba9 (patch) | |
tree | 3e82417950b9127a0cbe4369fcbeb4bec43c81e5 /npc/quests/newgears | |
parent | 6c870261994d380a17408650939c00c7463f2cfc (diff) | |
download | hercules-01a84660594f5756e9a9a24253007f235074eba9.tar.gz hercules-01a84660594f5756e9a9a24253007f235074eba9.tar.bz2 hercules-01a84660594f5756e9a9a24253007f235074eba9.tar.xz hercules-01a84660594f5756e9a9a24253007f235074eba9.zip |
Fixed a quest NPC giving you a Huge Leaf rather than Smokie Leaf
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@7675 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/quests/newgears')
-rw-r--r-- | npc/quests/newgears/2004_headgears.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/quests/newgears/2004_headgears.txt b/npc/quests/newgears/2004_headgears.txt index 023958d57..3418368e5 100644 --- a/npc/quests/newgears/2004_headgears.txt +++ b/npc/quests/newgears/2004_headgears.txt @@ -2098,7 +2098,7 @@ morocc.gat,273,79,4 script Traveler 99,{ mes "^FF0000the level of refines and cards will dissapear too.^000000";
mes "So please confirm the item you require.";
next;
- switch(select("Drooping Cat:Huge Leaf:Lazy Smokie:Blue Fish:There's nothing that I like.")) {
+ switch(select("Drooping Cat:Smokie Leaf:Lazy Smokie:Blue Fish:There's nothing that I like.")) {
case 1:
if (countitem(2233) && countitem(983) && countitem(7206) > 299 && countitem(7030)) {
delitem 2233,1;
@@ -2125,16 +2125,16 @@ morocc.gat,273,79,4 script Traveler 99,{ mes "If you bring them to me, I will make the Cat for you.";
close;
}
- case 2: //Huge Leaf [7198]
+ case 2: //Smokie Leaf [5064]
if (countitem(945) > 599 && countitem(7030)) {
delitem 945,600;
delitem 7030,1;
creation_lines;
- getitem 7198,1;
+ getitem 5064,1;
close;
} else {
mes "[Human]";
- mes "Ah, so you want the Huge Leaf.";
+ mes "Ah, so you want the Smokie Leaf.";
mes "Well,";
mes "I can make that for you,";
mes "but you will have to";
|