diff options
author | Dastgir <dastgirpojee@rocketmail.com> | 2015-12-10 15:39:41 +0530 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2015-12-18 05:13:37 +0100 |
commit | 7eea5d3e6051be189736b94e13be847159c87cd7 (patch) | |
tree | c046043a8e2a0fcb4702344f6a87883c9efb5b72 /npc/re/quests/pile_bunker.txt | |
parent | bd18b127755adaea4d958574b5b7f26c8d818b50 (diff) | |
download | hercules-7eea5d3e6051be189736b94e13be847159c87cd7.tar.gz hercules-7eea5d3e6051be189736b94e13be847159c87cd7.tar.bz2 hercules-7eea5d3e6051be189736b94e13be847159c87cd7.tar.xz hercules-7eea5d3e6051be189736b94e13be847159c87cd7.zip |
ItemID to Constant: re Folder
Diffstat (limited to 'npc/re/quests/pile_bunker.txt')
-rw-r--r-- | npc/re/quests/pile_bunker.txt | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/npc/re/quests/pile_bunker.txt b/npc/re/quests/pile_bunker.txt index 25461e2fb..28dc3787e 100644 --- a/npc/re/quests/pile_bunker.txt +++ b/npc/re/quests/pile_bunker.txt @@ -35,12 +35,12 @@ //========================================================================= yuno,179,174,4 script Gomer 4_M_REPAIR,{ - if (checkweight(1201,1) == 0 || MaxWeight - Weight < 1000) { + if (checkweight(Knife,1) == 0 || MaxWeight - Weight < 1000) { mes "[Gomer]"; mes "You are carrying so much. Drop off some of your luggage and come back to me."; close; } - if (countitem(1549)) { + if (countitem(Pilebuncker)) { mes "[Gomer]"; mes "So how's that Pilebuncker working out for you?"; close; @@ -105,7 +105,7 @@ yuno,179,174,4 script Gomer 4_M_REPAIR,{ mes "Lastly, finding a Brocca is very hard, but you should be able to do something about it. Haha, go get it!"; close; case 4: - if (countitem(999) < 200 || countitem(7325) < 30 || countitem(1415) < 1) { + if (countitem(Steel) < 200 || countitem(Tube) < 30 || countitem(Skewer) < 1) { mes "[Gomer]"; mes "You haven't brought all of the materials that I asked for."; next; @@ -132,11 +132,11 @@ yuno,179,174,4 script Gomer 4_M_REPAIR,{ next; mes "[Gomer]"; mes "Oh, and it turns out that I didn't need all that Steel after all. So here, take most of it back."; - delitem 999,50; //Steel - delitem 7325,30; //Tube - delitem 1415,1; //Skewer - getitem 1549,1; //Pilebuncker - getitem 1360,1; //Two_Handed_Axe + delitem Steel,50; + delitem Tube,30; + delitem Skewer,1; + getitem Pilebuncker,1; + getitem Two_Handed_Axe,1; close; } } |