Posts: 13
Threads: 8
Joined: Jun 2011
Reputation:
0
why does my bot always collect 1-2 items then goes to town sells, then conitunes run?
i have 6 full slots open in my inventory yet he will find a ring, go tp sell it come back, find jewel rinse and repeat.
what file and line(s) do i edit?
thanks[COLOR="Silver"]
---------- Post added 06-10-2011 at 03:26 AM ---------- Previous post was 06-09-2011 at 10:59 PM ----------
[/COLOR]bump
Posts: 5,260
Threads: 513
Joined: Aug 2004
Reputation:
0
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.
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]