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/novice_exchange.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/novice_exchange.txt')
-rw-r--r-- | npc/merchants/novice_exchange.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/npc/merchants/novice_exchange.txt b/npc/merchants/novice_exchange.txt index d35f1db48..d23961554 100644 --- a/npc/merchants/novice_exchange.txt +++ b/npc/merchants/novice_exchange.txt @@ -37,7 +37,7 @@ //========================================================================= prontera,123,102,5 script Merchant#pron 4_M_03,{ - if (MaxWeight - Weight < 6301 || checkweight(1201,1) == 0) { + if (MaxWeight - Weight < 6301 || checkweight(Knife,1) == 0) { mes "[Merchant]"; mes "Haha!"; mes "What are you, superhuman?"; @@ -93,7 +93,7 @@ prontera,123,102,5 script Merchant#pron 4_M_03,{ } morocc,180,259,3 script Merchant#morroc 4_M_03,{ - if (MaxWeight - Weight < 6301 || checkweight(1201,1) == 0) { + if (MaxWeight - Weight < 6301 || checkweight(Knife,1) == 0) { mes "[Merchant]"; mes "Haha!"; mes "What are you, superhuman?"; @@ -150,7 +150,7 @@ morocc,180,259,3 script Merchant#morroc 4_M_03,{ } payon,200,134,5 script Merchant#pay 4_M_03,{ - if (MaxWeight - Weight < 6301 || checkweight(1201,1) == 0) { + if (MaxWeight - Weight < 6301 || checkweight(Knife,1) == 0) { mes "[Merchant]"; mes "Haha!"; mes "What are you, superhuman?"; @@ -204,7 +204,7 @@ payon,200,134,5 script Merchant#pay 4_M_03,{ } aldebaran,152,63,5 script Merchant#alde 4_M_03,{ - if (MaxWeight - Weight < 6301 || checkweight(1201,1) == 0) { + if (MaxWeight - Weight < 6301 || checkweight(Knife,1) == 0) { mes "[Merchant]"; mes "Haha!"; mes "What are you, superhuman?"; @@ -261,7 +261,7 @@ aldebaran,152,63,5 script Merchant#alde 4_M_03,{ } geffen,173,88,5 script Merchant#geff 4_M_03,{ - if (MaxWeight - Weight < 6301 || checkweight(1201,1) == 0) { + if (MaxWeight - Weight < 6301 || checkweight(Knife,1) == 0) { mes "[Merchant]"; mes "Haha!"; mes "What are you, superhuman?"; @@ -387,7 +387,7 @@ function script F_PotExchange { mes "Check how many Red Potions"; mes "I've given you, it should be good. Thanks, that was a good deal~"; delitem getarg(0),.@put_out_item; //Shell - getitem 501,.@input; //Red_Potion + getitem Red_Potion,.@input; close; } mes "[Merchant]"; |