Well sometimes the bot gets confused,especially if you have something in your inventory that it wants to stash and you have no room in the stash.Also the getstate portion of your charactername_config can cause the bot to go to town unnecessarily.The getstate portion is at the bottom of your config and looks like this
Code:
// Check self safe in field (NOT in town). Set to 0 if you won't
// 0x01 : Potion, 0x02 : Poison, 0x04 : Amplify Damage, 0x08 : Weaken, 0x10 : Iron Maiden, 0x20 : Decrepify, 0x40 : Lower Resist
NTConfig_CheckSelfSafe = 0x04|0x08|0x40;
// Check merc's safe in field (NOT in town). Set to 0 if you won't
// 0x01 : Death, 0x02 : Poison, 0x04 : Amplify Damage, 0x08 : Weaken, 0x10 : Iron Maiden, 0x20 : Decrepify, 0x40 : Lower Resist
NTConfig_CheckMercSafe = 0x01|0x04|0x10|0x40;
NTConfig_CastStatic = 78; // Cast Static Field until monster's HP lower less than this percent. Set to 100 if you won't
}
See how the orange lines have some code in them, that tells the bot to go to town to heal various ailments, if you don't want it to do that just tell it not too by putting zeros where the code is.like this
Code:
// Check self safe in field (NOT in town). Set to 0 if you won't
// 0x01 : Potion, 0x02 : Poison, 0x04 : Amplify Damage, 0x08 : Weaken, 0x10 : Iron Maiden, 0x20 : Decrepify, 0x40 : Lower Resist
NTConfig_CheckSelfSafe = 0
// Check merc's safe in field (NOT in town). Set to 0 if you won't
// 0x01 : Death, 0x02 : Poison, 0x04 : Amplify Damage, 0x08 : Weaken, 0x10 : Iron Maiden, 0x20 : Decrepify, 0x40 : Lower Resist
NTConfig_CheckMercSafe = 0
NTConfig_CastStatic = 78; // Cast Static Field until monster's HP lower less than this percent. Set to 100 if you won't
}
And as far as a script goes for clearing the whole game, you are better off just doing a few runs many times,your odds of finding good stuff is actually better.Especially in high level areas(85+).
Also I find that using Static field causes some problems ,so I just set my bot's static to 100%.Imo, you don't need static in a solo bot game.
Bookmarks