06-12-2011, 09:44 AM
Your bot could be cursed so it goes to town to remove curse/sell items. Or is it just random when u have no curses.
Are u using d2nt 3.1? Does it do it on every boss?
If u playing softcore and want to remove curse checks go to your char config and scroll all the way down till u see this.
find this and change it.
Change it to this.
Are u using d2nt 3.1? Does it do it on every boss?
If u playing softcore and want to remove curse checks go to your char config and scroll all the way down till u see this.
find this and change it.
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|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;
Change it to 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;
[SIGPIC]http://yfrog.com/mhskidudecopyg[/SIGPIC]