From 47cdfa0845bbe0177ff11777c511aa09ab37c673 Mon Sep 17 00:00:00 2001 From: Mathy Date: Sat, 2 Sep 2017 23:53:21 -0300 Subject: Fix errors in the Diamond seller script that were making the NPC check for weight incorrectly. --- npc/other/comodo_gambling.txt | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'npc') diff --git a/npc/other/comodo_gambling.txt b/npc/other/comodo_gambling.txt index 89a2b0e8a..bd2b0d692 100644 --- a/npc/other/comodo_gambling.txt +++ b/npc/other/comodo_gambling.txt @@ -541,13 +541,13 @@ mjolnir_02,85,362,3 script Blacksmith Miner 4_F_JOB_BLACKSMITH,{ mes "please enter '0' to cancel."; next; input .@amount; - if (.@amount == 0){ + if (.@amount == 0) { mes "[Dwayne]"; mes "Alright, you've"; mes "canceled the trade."; mes "Take care!"; close; - }else if (.@amount < 1 || .@amount > 500){ + } else if (.@amount < 1 || .@amount > 500){ mes "[Dwayne]"; mes "The maximum"; mes "amount is 500."; @@ -555,8 +555,7 @@ mjolnir_02,85,362,3 script Blacksmith Miner 4_F_JOB_BLACKSMITH,{ close; } .@cost = .@amount * 55000; - .@weight = .@amount * 100; - if (Zeny < .@cost){ + if (Zeny < .@cost) { mes "[Dwayne]"; mes "Errr..."; mes "I'm sorry, but you"; @@ -565,7 +564,7 @@ mjolnir_02,85,362,3 script Blacksmith Miner 4_F_JOB_BLACKSMITH,{ mes "I sell them at that price."; close; } - if (Weight < .@weight){ + if (!checkweight(Crystal_Jewel__, .@amount)) { mes "[Dwayne]"; mes "Errr..."; mes "You're carrying too many items."; @@ -573,7 +572,7 @@ mjolnir_02,85,362,3 script Blacksmith Miner 4_F_JOB_BLACKSMITH,{ close; } Zeny -= .@cost; - getitem 732,.@amount; + getitem(Crystal_Jewel__, .@amount); mes "[Dwayne]"; mes "Thank you for"; mes "buying my diamonds!"; -- cgit v1.2.3-60-g2f50