diff options
author | Dastgir <dastgirpojee@rocketmail.com> | 2015-12-10 15:32:14 +0530 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2015-12-18 05:13:35 +0100 |
commit | 3aa8abd848f1570d514148b311b25871378d2e2d (patch) | |
tree | f144ddd14143b3a92909196f8fe4dd7060ba4ad3 /npc/merchants/socket_enchant2.txt | |
parent | a1d160ead032b63a0f696a34961df9e099154402 (diff) | |
download | hercules-3aa8abd848f1570d514148b311b25871378d2e2d.tar.gz hercules-3aa8abd848f1570d514148b311b25871378d2e2d.tar.bz2 hercules-3aa8abd848f1570d514148b311b25871378d2e2d.tar.xz hercules-3aa8abd848f1570d514148b311b25871378d2e2d.zip |
ItemID to Constant: kafras/merchants Folder
Diffstat (limited to 'npc/merchants/socket_enchant2.txt')
-rw-r--r-- | npc/merchants/socket_enchant2.txt | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/npc/merchants/socket_enchant2.txt b/npc/merchants/socket_enchant2.txt index 9f109115f..42f910477 100644 --- a/npc/merchants/socket_enchant2.txt +++ b/npc/merchants/socket_enchant2.txt @@ -35,7 +35,7 @@ //========================================================================= - script Leablem#dummy::SocketEnchant2 -1,{ - if (checkweight(1201,1) == 0) + if (checkweight(Knife,1) == 0) { mes "- Wait a minute !! -"; mes "- Currently you're carrying -"; @@ -292,7 +292,7 @@ mes "We don't have time to waste,"; mes "so let's get down to business right away."; next; - if ((Zeny > 199999999) && (countitem(969) > 1) && (countitem(5022) > 0)) + if ((Zeny > 199999999) && (countitem(Gold) > 1) && (countitem(Helm_Of_Sun) > 0)) { mes "[Leablem]"; mes "Shall we start now?"; @@ -306,10 +306,10 @@ mes "Excellent! Wow, I guess the 90% success chance is true!"; mes "Look, the slot was added in the perfect place."; mes "Congratulations."; - delitem 5022,1; //Helm_Of_Sun - delitem 969,2; //Gold + delitem Helm_Of_Sun,1; + delitem Gold,2; Zeny -= 200000000; - getitem 5353,1; //Helm_Of_Sun_ + getitem Helm_Of_Sun_,1; next; mes "[Leablem]"; mes "This is the first and last time I will do this for you."; @@ -325,8 +325,8 @@ mes "My god, I guess we had the worst kind of luck..."; mes "What should we do? ...This is why"; mes "I didn't want to do in the first place!"; - delitem 5022,1; //Helm_Of_Sun - delitem 969,2; //Gold + delitem Helm_Of_Sun,1; + delitem Gold,2; Zeny -= 200000000; next; mes "[Leablem]"; |