For some odd reason, when I use D2NT my bot doesn't heal my merc like it should, it just waits until it dies, and then chickens because of it. Here is what my piece of code looks like for the chicken settings:
Code:
NTConfig_SkipHealLife = 70; // If you have more than this percent of life, you won't go to a healer
NTConfig_SkipHealMana = 70; // If you have more than this percent of mana, you won't go to a healer
NTConfig_UseMerc = true; // Set to true if you use a mercenary, will revive merc at a reviver npc.
NTConfig_ResetWeapon = false; // Set to true to reset weapon when reviving merc
NTConfig_LifeThresh = 60; // Drink a normal potion if under this percent of life.
NTConfig_LifeRejuvThresh = 40; // Drink a rejuvenation potion if under this percent of life.
NTConfig_ManaThresh = 30; // Drink a normal potion if under this percent of mana.
NTConfig_ManaRejuvThresh = 10; // Drink a rejuvenation potion if under this percent of mana.
NTConfig_LifeChicken = 20; // This is your chicken life percent. If you go below this life total, exit game.
NTConfig_ManaChicken = 0; // This is your chicken mana percent. If you go below this mana total, exit game.
NTConfig_MercLifeThresh = 60; // This is the threshold to use a life potion on your merc in percent.
NTConfig_MercRejuvThresh = 50; // This is the threshold to use a rejuv potion on your merc in percent.
NTConfig_MercChicken = 10; // This is your mercs chicken life percent. If he goes below this, exit game.
As you can tell, it is suppose to use a life potion on my merc if its health goes below 60, and use a rejuv on him if it goes past 50, but as I said above, the bot just lets the merc die completely. Is there anyway that I can fix this?
Bookmarks