diff options
author | Dastgir <dastgirpojee@rocketmail.com> | 2015-12-10 15:36:07 +0530 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2015-12-18 05:13:37 +0100 |
commit | bd18b127755adaea4d958574b5b7f26c8d818b50 (patch) | |
tree | 01eef4e4d0bcd5937deb4801fae7eaa1a90b06eb /npc/pre-re/quests/collection/quest_hode.txt | |
parent | 48122727289c06906d8c4e38e183bb0a16ddbb53 (diff) | |
download | hercules-bd18b127755adaea4d958574b5b7f26c8d818b50.tar.gz hercules-bd18b127755adaea4d958574b5b7f26c8d818b50.tar.bz2 hercules-bd18b127755adaea4d958574b5b7f26c8d818b50.tar.xz hercules-bd18b127755adaea4d958574b5b7f26c8d818b50.zip |
ItemID to Constant: pre-re Folder
Diffstat (limited to 'npc/pre-re/quests/collection/quest_hode.txt')
-rw-r--r-- | npc/pre-re/quests/collection/quest_hode.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/pre-re/quests/collection/quest_hode.txt b/npc/pre-re/quests/collection/quest_hode.txt index 5c5fe33e3..16cbf69aa 100644 --- a/npc/pre-re/quests/collection/quest_hode.txt +++ b/npc/pre-re/quests/collection/quest_hode.txt @@ -182,7 +182,7 @@ moc_fild17,208,346,5 script Shone#Hode_Hunt 4_M_MOC_SOLDIER,{ switch(select("I have 25 Earthworm Peelings:What was it again?")) { case 1: /* - if (checkweight(502,10) == 0) { + if (checkweight(Orange_Potion,10) == 0) { mes "[Shone]"; mes "Hey, it looks like that the weight on"; mes "your back will crush you. Come back"; @@ -190,13 +190,13 @@ moc_fild17,208,346,5 script Shone#Hode_Hunt 4_M_MOC_SOLDIER,{ close; } */ - if (countitem(1055) > 24) { + if (countitem(Earthworm_Peeling) > 24) { mes "Thank you for the 25 Earthworm"; mes "Peelings!"; mes "Here is that reward I promised you, I hope take this wisdom I have passed on to you and share it with others."; - delitem 1055,25; //Earthworm_Peeling + delitem Earthworm_Peeling,25; getexp 15775,1125; - //getitem 502,10; //Orange_Potion + //getitem Orange_Potion,10; close; } else { |