Blizzard Sector
Bot always goes to town whenever amplify damage is cast upon him..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 always goes to town whenever amplify damage is cast upon him..help (/thread-46514.html)



Bot always goes to town whenever amplify damage is cast upon him..help - drewtx84 - 06-19-2010

How do i configure the script so that my baal bot doesn't go to malah to heal everytime amplify damage is cast upon him in the throne room?


Bot always goes to town whenever amplify damage is cast upon him..help - skidude - 06-22-2010

drewtx84 Wrote:How do i configure the script so that my baal bot doesn't go to malah to heal everytime amplify damage is cast upon him in the throne room?
open up your char config located \D2NT\scripts\NTBot\char_configs' and scroll down to the very bottom and you will see 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|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;
If you don't want the bot to go to town when it has any sort of curse/poison then simply change the above 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;