07-05-2012, 11:44 AM
Double check this area of your character script:
Try setting the gambling amounts lower. You'll lose less gold from deaths, and you'll have more room for gambling.
Any tiny typo can mean your script doesnt run right. Aslo, keep in mind what you bot's pickit is set to, as conflicting interests have been linked to that before. :3
Code:
//------------------------------------------------------------------------------
// Gamble configuration
// To specify what items to gamble, adjust the array with the desired item codes
//------------------------------------------------------------------------------
NTConfig_Gamble = true; // Enable gambling
NTConfig_GambleStartGold = 800000; // Gold amount to start the gambling
NTConfig_GambleStopGold = 300000; // Gold amount to stop the gambling
//NTConfig_GambleItem.push(520); // Amulets
//NTConfig_GambleItem.push(522); // Rings
//NTConfig_GambleItem.push(418); // Circlets
NTConfig_GambleItem.push(419); // Coronets
//NTConfig_GambleItem.push(334); // Leather Gloves
//NTConfig_GambleItem.push(335); // Heavy Gloves
//NTConfig_GambleItem.push(336); // Chain Gloves
//NTConfig_GambleItem.push(337); // Light Gauntlets
//NTConfig_GambleItem.push(338); // Gauntlets
Try setting the gambling amounts lower. You'll lose less gold from deaths, and you'll have more room for gambling.
Any tiny typo can mean your script doesnt run right. Aslo, keep in mind what you bot's pickit is set to, as conflicting interests have been linked to that before. :3