Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Multiple questions about 3.1 D2NT Bot (should be simple)
#1
Hello all, new user here.

I've been botting with my sorc for a little while now, and (1) I've been noticing that she returns home via TP to go heal at a NCP when she has almost full health.

I have it set to heal at ncp when life is less than 90% but should that only happen when she's in town?

At first I thought it was that she was selling random amulets and rings to make space, but I have enough 0s in my inventory to cover quite a bit. and I've noticed she will sometimes hold quite a few items, then go to town to heal with almost 100% health and sell the unwanted items.


This usually isn't a big problem, but there are times where she will be doing a chaos run and she TPs into town 5 times in a row to go heal. One right after the other without taking any damage.

What might be causing this?

This is what the healing script looks like on her. I haven't changed anything from stock.

NTConfig_SkipHealLife = 90; // 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 = 50; // This is the threshold to use a life potion on your merc in percent.
NTConfig_MercRejuvThresh = 30; // This is the threshold to use a rejuv potion on your merc in percent.
NTConfig_MercChicken = 20; // This is your mercs chicken life percent. If he goes below this, exit game.


Question 2.

I'm having difficulties getting her to static only bosses (andy, D, baal, etc..)
i tried copying this script over the original into my NTattack file without any success.

if(NTConfig_CastStatic < 100 && parseInt(target.hp*100/target.hpmax) > NTConfig_CastStatic && NTA_GetResistance(target, NTA_DAMAGE_LIGHTNING) <= 80 && (target.name == "Baal" || target.name == "Diablo" || target.name == "Duriel" || target.name == "Mephisto"))

Do I leave my static attack in my char config to 100? (so she won't static monsters)


Thanks in advance for any help.Big Grin
-Joe[COLOR="Silver"]

---------- Post added 02-21-2011 at 03:36 AM ---------- Previous post was 02-19-2011 at 02:23 PM ----------

[/COLOR]Also, is there a a script that clears the whole game A1-A5? Just wondering.[COLOR="Silver"]

---------- Post added at 10:43 AM ---------- Previous post was at 03:36 AM ----------

[/COLOR]My Pallybot also seems to make an unnecessary amount of trips back into town to heal. Even if he has 100% hp.
Reply
#2
Well sometimes the bot gets confused,especially if you have something in your inventory that it wants to stash and you have no room in the stash.Also the getstate portion of your charactername_config can cause the bot to go to town unnecessarily.The getstate portion is at the bottom of your config and looks like 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
    [COLOR=DarkOrange]NTConfig_CheckSelfSafe = 0x04|0x08|0x40;[/COLOR]
    // 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
   [COLOR=DarkOrange] NTConfig_CheckMercSafe = 0x01|0x04|0x10|0x40;
[/COLOR]
    NTConfig_CastStatic = 78;    // Cast Static Field until monster's HP lower less than this percent. Set to 100 if you won't
}
See how the orange lines have some code in them, that tells the bot to go to town to heal various ailments, if you don't want it to do that just tell it not too by putting zeros where the code is.like 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
   [COLOR=DarkOrange] NTConfig_CheckSelfSafe = 0[/COLOR]
    // 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
   [COLOR=DarkOrange] NTConfig_CheckMercSafe = 0
[/COLOR]
    NTConfig_CastStatic = 78;    // Cast Static Field until monster's HP lower less than this percent. Set to 100 if you won't
}
And as far as a script goes for clearing the whole game, you are better off just doing a few runs many times,your odds of finding good stuff is actually better.Especially in high level areas(85+).

Also I find that using Static field causes some problems ,so I just set my bot's static to 100%.Imo, you don't need static in a solo bot game.
[SIGPIC][/SIGPIC]Well I’m not there all the time you know Some people, some people, some people, Call it insane, yeah they call it insane, (sugar) I play russian roulette everyday, a man’s sport, With a bullet called life, yeah called life,(sugar)
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  [D2NT Release] Druid Script skidude 20 17,266 08-25-2012, 01:20 AM
Last Post: comper
  D2NT BoT Gh0sT17 52 2,056 07-31-2012, 11:10 PM
Last Post: comper
  D2nt need help on some stuff wishyq 3 170 07-22-2012, 12:44 PM
Last Post: comper
  Little Help Please? (D2NT) pnsmcgraw 12 271 07-16-2012, 02:46 PM
Last Post: Mythosis
  MasivB's D2NT Simple Unique PickIt masivb 1 118 07-03-2012, 05:03 AM
Last Post: comper
  D2nt - how do i stay in game when sojs sell? brianwalter86 5 354 07-01-2012, 02:02 PM
Last Post: comper
  Nooby D2NT Questions Kieran Wilson 0 129 06-25-2012, 04:35 PM
Last Post: Kieran Wilson
  [D2NT Release]Item Logging with XML 3.0+ skidude 76 14,554 06-25-2012, 01:27 PM
Last Post: masivb
  D2nt Bot jewel pickit/godly item pickit Nightwish 3 232 06-23-2012, 04:18 AM
Last Post: comper
  someone please help my d2nt bot wont kill any bosses mcmullenp4 2 178 06-19-2012, 10:18 AM
Last Post: comper

Forum Jump:


Users browsing this thread: 1 Guest(s)