Results 1 to 2 of 2
  1. #1

    Default Multiple questions about 3.1 D2NT Bot (should be simple)

    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.
    -Joe

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

    Also, is there a a script that clears the whole game A1-A5? Just wondering.

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

    My Pallybot also seems to make an unnecessary amount of trips back into town to heal. Even if he has 100% hp.

  2. #2
    Ancient Jammer74's Avatar
    Join Date
    Jun 2005
    Location
    Toronto,Ontario
    Posts
    452

    Default

    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
        NTConfig_CheckSelfSafe = 0x04|0x08|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;
    
        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
        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
    
        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.
    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)

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Bot: d2nt run multiple bots simultanious??
    By sgeneral in forum Hacks Bots and Editors
    Replies: 1
    Last Post: 11-17-2010, 09:42 AM
  2. Bot: Questions regarding D2nt
    By bgamer in forum Hacks Bots and Editors
    Replies: 1
    Last Post: 07-12-2010, 03:32 AM
  3. Bot: Multiple D2NT Bots Help
    By reckloos in forum Hacks Bots and Editors
    Replies: 5
    Last Post: 06-12-2010, 09:32 AM
  4. Replies: 1
    Last Post: 09-15-2009, 11:16 AM
  5. Simple but important questions about mmbot
    By xxxsublimexxx111 in forum Hacks Bots and Editors
    Replies: 2
    Last Post: 12-22-2005, 05:26 AM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •