Blizzard Sector
bot inventory help - Printable Version

+- Blizzard Sector (https://www.blizzsector.co)
+-- Forum: Diablo II (https://www.blizzsector.co/forum-4.html)
+--- Forum: Hacks Bots and Editors (https://www.blizzsector.co/forum-16.html)
+--- Thread: bot inventory help (/thread-47404.html)



bot inventory help - sin187 - 06-10-2011

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


bot inventory help - skidude - 06-12-2011

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;