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/skills/archer_skills.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/skills/archer_skills.txt')
-rw-r--r-- | npc/quests/skills/archer_skills.txt | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/npc/quests/skills/archer_skills.txt b/npc/quests/skills/archer_skills.txt index 87fe97a24..030806877 100644 --- a/npc/quests/skills/archer_skills.txt +++ b/npc/quests/skills/archer_skills.txt @@ -65,17 +65,17 @@ moc_ruins,118,99,5 script Roberto 4_M_ORIENT01,{ mes " "; mes "You are..."; next; - if ((countitem(907) > 19) && (countitem(921) > 6) && (countitem(906) > 40) && (countitem(1019) > 12) && (countitem(501) > 0)) { + if ((countitem(Resin) > 19) && (countitem(Mushroom_Spore) > 6) && (countitem(Pointed_Scale) > 40) && (countitem(Wooden_Block) > 12) && (countitem(Red_Potion) > 0)) { mes "[Roberto]"; mes "You brought them!"; mes "Thank you very much."; mes "Then, as I promised, I will teach you the skill."; next; - delitem 907,20; //Resin - delitem 921,7; //Mushroom_Spore - delitem 906,41; //Tough_Scalelike_Stem - delitem 1019,13; //Wooden_Block - delitem 501,1; //Red_Potion + delitem Resin,20; + delitem Mushroom_Spore,7; + delitem Pointed_Scale,41; //Tough_Scalelike_Stem + delitem Wooden_Block,13; + delitem Red_Potion,1; skill "AC_MAKINGARROW",1,0; mes "[Roberto]"; mes "No need to worry about arrows now."; @@ -238,17 +238,17 @@ payon,103,63,3 script Jason 4_M_ORIENT01,3,3,{ mes "(I'm going to be mad if you don't bring the Banana Juice.)"; close; case 2: - if ((countitem(721) > 1) && (countitem(942) > 2) && (countitem(962) > 9) && (countitem(925) > 9) && (countitem(532) > 35)) { + if ((countitem(Azure_Jewel) > 1) && (countitem(Yoyo_Tail) > 2) && (countitem(Tentacle) > 9) && (countitem(Bill_Of_Birds) > 9) && (countitem(Banana_Juice) > 35)) { mes "[Jason]"; mes "Ok! Perfect!"; mes "I shall teach you the nationally"; mes "renowned skill, Arrow Repel!"; next; - delitem 721,2; //Azure_Jewel - delitem 942,3; //Yoyo_Tail - delitem 962,10; //Tentacle - delitem 925,10; //Bill_Of_Birds - delitem 532,36; //Banana_Juice + delitem Azure_Jewel,2; + delitem Yoyo_Tail,3; + delitem Tentacle,10; + delitem Bill_Of_Birds,10; + delitem Banana_Juice,36; skill "AC_CHARGEARROW",1,0; mes "[Jason]"; mes "Oh, works better than I expected!"; |