diff options
author | Dastgir <dastgirpojee@rocketmail.com> | 2015-12-10 15:35:54 +0530 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2015-12-18 05:13:36 +0100 |
commit | 48122727289c06906d8c4e38e183bb0a16ddbb53 (patch) | |
tree | decd7a501b337f730cb2c16285e2d10049a4026e /npc/quests/juice_maker.txt | |
parent | ecb934ebba6ac3fbd35d8816c1802f0d134ef4ac (diff) | |
download | hercules-48122727289c06906d8c4e38e183bb0a16ddbb53.tar.gz hercules-48122727289c06906d8c4e38e183bb0a16ddbb53.tar.bz2 hercules-48122727289c06906d8c4e38e183bb0a16ddbb53.tar.xz hercules-48122727289c06906d8c4e38e183bb0a16ddbb53.zip |
ItemID to Constant: quests/woe Folder
Diffstat (limited to 'npc/quests/juice_maker.txt')
-rw-r--r-- | npc/quests/juice_maker.txt | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/npc/quests/juice_maker.txt b/npc/quests/juice_maker.txt index 52f849c8e..514526e66 100644 --- a/npc/quests/juice_maker.txt +++ b/npc/quests/juice_maker.txt @@ -121,8 +121,8 @@ prt_in,47,173,3 script Morrison#juice 4W_M_01,{ mes "[Little Morrison]"; mes "It's a little something I've been saving to eat for later, but since you gave me Meat, I think I can pass on the sweets."; close; - getitem 529,3; //Candy - getitem 530,1; //Candy_Striper + getitem Candy,3; + getitem Candy_Striper,1; } close; } @@ -130,7 +130,7 @@ prt_in,47,173,3 script Morrison#juice 4W_M_01,{ mes "Agh....Noooo!!!"; mes "No, don't make me eat it! I can't bear to taste fruits!"; next; - if (countitem(517) > 0) { + if (countitem(Meat) > 0) { switch(select("Talk:Show the Meat:Cancel")) { case 1: mes "[Little Morrison]"; @@ -148,7 +148,7 @@ prt_in,47,173,3 script Morrison#juice 4W_M_01,{ mes "C-can I please have one?"; next; if (select("Give Meat:Don't Give Meat") == 1) { - delitem 517,1; //Meat + delitem Meat,1; ++morison_meat; mes "[Little Morrison]"; mes "Wow~!!! Meat!!"; @@ -190,7 +190,7 @@ prt_in,47,173,3 script Morrison#juice 4W_M_01,{ } payon_in03,188,146,5 script Marx Hansen#juice 4_M_04,{ - if (checkweight(1201,1) == 0) { + if (checkweight(Knife,1) == 0) { mes "- Wait a moment! -"; mes "- Currently you're carrying -"; mes "- too many items with you. -"; @@ -232,7 +232,7 @@ payon_in03,188,146,5 script Marx Hansen#juice 4_M_04,{ mes "See you next time."; close; } - if (countitem(.@fruit) == 0 || countitem(713) == 0 || Zeny < 3) { + if (countitem(.@fruit) == 0 || countitem(Empty_Bottle) == 0 || Zeny < 3) { mes "[Merchant Marx Hansen]"; mes "Oh no..."; mes "You don't have all the necessary materials. To make "+getitemname(.@juice)+", I need 1 "+getitemname(.@fruit)+" and 1 Empty Bottle. I will also need a 3 zeny fee."; @@ -248,7 +248,7 @@ payon_in03,188,146,5 script Marx Hansen#juice 4_M_04,{ switch(select("As many as I can.:I want a certain amount.:Cancel.")) { case 1: .@make = countitem(.@fruit); - if (countitem(713) < .@make) .@make = countitem(713); + if (countitem(Empty_Bottle) < .@make) .@make = countitem(Empty_Bottle); if (Zeny/3 < .@make) .@make = Zeny/3; break; case 2: @@ -283,7 +283,7 @@ payon_in03,188,146,5 script Marx Hansen#juice 4_M_04,{ .@total_zeny = 3 * .@make; - if (countitem(.@fruit) < .@make || countitem(713) < .@make || Zeny < .@total_zeny) { + if (countitem(.@fruit) < .@make || countitem(Empty_Bottle) < .@make || Zeny < .@total_zeny) { mes "[Merchant Marx Hansen]"; mes "Oh no..."; mes "You don't have all the necessary materials. I can't help a situation like this. I guess you collect what you need."; |