Page 8 of 9 FirstFirst ... 6789 LastLast
Results 141 to 160 of 173
  1. #141

    Default

    is there anyway I can get it to where my sorc doesnt cast mana shield even though i have it?

  2. #142

    Default

    Quote Originally Posted by bloodseeker View Post
    is there anyway I can get it to where my sorc doesnt cast mana shield even though i have it?
    I'm pretty sure it's this:
    Go to D2NT --> scripts --> libs --> common, then select NTPrecast.ntl (open it with wordpad if it doesn't automatically)
    Press CTRL + F and type Energy Shield, search for it.
    Then you can just comment it out by putting // in front of the energy shield precast code. That will disable the bot from casting energy shield.

    Also, any solutions for my problem, anyone? Can't seem to make him identify large charms...

  3. #143

    Default

    thanks to this guide, i got it working great...

    one question though
    my bot only buys the lowest available potion when shopping... any way to change that?

  4. #144
    Super hacker skidude's Avatar
    Join Date
    Aug 2004
    Location
    greece
    Posts
    5,160

    Default

    Quote Originally Posted by RuneSeeker View Post
    I've also got a problem;
    I'm trying to get my sorc to farm some lld charms, and I've noticed that it picks up every large charm, doesn't identify it, and just stashes it, wasting a lot of space. Later when I log in manually and id the charms, they're pretty much worthless and aren't the ones that I defined in the pickit. Small charms and grandcharms are normally id'd and sold if they are worthless to the bot, but I guess thats not the case with large charms.
    Anything I can do to fix this? I just want it to id the charms and keep only the ones defined in the pickit. Here's what I have so far:
    you need to change the charm names, LargeCharm GrandCharm SmallCharm
    First letter of small,grand,large should be capital and same with The c in charm

    Quote Originally Posted by bloodseeker View Post
    is there anyway I can get it to where my sorc doesnt cast mana shield even though i have it?
    to remove Energy Shield precast - Open up \D2NT\scripts\libs\common' and then open 'NTPrecast'

    CTRL+F energy

    Make the line look like this
    Code:
    //NTC_CastSkill(58, NTC_HAND_RIGHT); // Energy Shield
    Quote Originally Posted by mlamma View Post
    thanks to this guide, i got it working great...

    one question though
    my bot only buys the lowest available potion when shopping... any way to change that?
    Stop botting normal and u won't have this issue ^.^
    You can set the bot to pick up greater and super hp & mana pots tho

  5. #145

    Default

    Im sure someone has answered this but ive tried like everything I saw but i keep getting the same error....help?


  6. #146

    Default Here is my weird problem , please help me with advice

    After running few days without problems , today I start to have weird issue . After 1th Boss was killed Nihi , the bot stops /freezes and i got the following Error Msg :

    <D2NTError>C:\Documents and Settings\User\Desktop\Bot1\scripts\libs\common\NTI temParser.ntl (60) : Syntax Error: missing ; before statement

    Then I've checked Libs\common\NTItemParser and everything was the same as default , I havent changed anything , so no idea whats that issue appiering now . Please give me advice which could resolve my problem . Thanks a lot .

    Edit: i replaced the all lib folder , but that didnt solved anything .. I'm getting same error msg , once I've kill 1th boss Nihi ...
    Last edited by LostSoul; 06-22-2010 at 05:40 AM. Reason: correction

  7. #147
    Super hacker skidude's Avatar
    Join Date
    Aug 2004
    Location
    greece
    Posts
    5,160

    Default

    Quote Originally Posted by beescody View Post
    Im sure someone has answered this but ive tried like everything I saw but i keep getting the same error....help?

    There is a error in your char config file name or u messed up a line of code in your config (could be a missing ; somewhere)


    Quote Originally Posted by LostSoul View Post
    After running few days without problems , today I start to have weird issue . After 1th Boss was killed Nihi , the bot stops /freezes and i got the following Error Msg :

    <D2NTError>C:\Documents and Settings\User\Desktop\Bot1\scripts\libs\common\NTI temParser.ntl (60) : Syntax Error: missing ; before statement

    Then I've checked Libs\common\NTItemParser and everything was the same as default , I havent changed anything , so no idea whats that issue appiering now . Please give me advice which could resolve my problem . Thanks a lot .

    Edit: i replaced the all lib folder , but that didnt solved anything .. I'm getting same error msg , once I've kill 1th boss Nihi ...
    The problem is in the pickit scripts, You probably didn't put the [] or && or # in one of your lines or u deleted part of a pickit line

  8. #148

    Default

    How do I get this thing to stop going to town and healing everytime I get amp'd?

  9. #149
    Super hacker skidude's Avatar
    Join Date
    Aug 2004
    Location
    greece
    Posts
    5,160

    Default

    Quote Originally Posted by dteK686 View Post
    How do I get this thing to stop going to town and healing everytime I get amp'd?
    If u are playing hardcore i would keep curse checks, If u are playing softcore knock yourself out. Just change this below

    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;

  10. #150

  11. #151

    Default Issues

    Whenever I use the bot on my barb, I set it to frenzy.. but he will stand completely away from the monster and just frenzy. Is there anyway to make it so the bot will actually approach the monster and frenzy it? He's not killing anything....

  12. #152

    Default

    How would you right a snagit script for any eth armor over 600 def?

  13. #153
    Super hacker skidude's Avatar
    Join Date
    Aug 2004
    Location
    greece
    Posts
    5,160

    Default

    Quote Originally Posted by Afide View Post
    How would you right a snagit script for any eth armor over 600 def?
    u could try this, if it does not work u will need to add each armor type u want it to keep
    [Type] == armor && [Class] == elite && [Quality] == normal && [Flag] == ethereal # [Defense] >= 600 && [Sockets] == 0

    I would set it to keep eth armors with over 700+ def tho better for glitching,

  14. #154

    Default

    Hey, how do I get this to run my zon to do runs?

    ---------- Post added at 07:24 PM ---------- Previous post was at 01:06 AM ----------

    Can someone please help me out? I need to get the bot to do baal runs with my zon. Ive seen other zons running baal games. How do you do it?

    ---------- Post added 07-09-2010 at 03:51 PM ---------- Previous post was 07-08-2010 at 07:24 PM ----------

    Helloooo ? =]

  15. #155

    Default

    Can someone helpppppppp

  16. #156

    Default

    how can i make my bot wait atleast 10 seconds before making ng in lobby?

  17. #157

    Default

    what do I do if I want to make that the bot puts the new found item into the stash instead of waiting till it's inventory is full? and isn't it easier if he identified with cain? :P if it's possible how?

    I also am getting this error and the bot stops when it occurs:



    ---------- Post added at 03:24 PM ---------- Previous post was at 03:23 PM ----------

    Quote Originally Posted by oyetsaga09 View Post
    how can i make my bot wait atleast 10 seconds before making ng in lobby?
    edit the NTBot.ntj in your \D2NT\scripts\ folder.

  18. #158

    Default

    Okay, I took a screen shot for you guys this time.

    Here is the error I have been getting, even if I disable baal and select another bot it gives me the same error but with said bots name.



    I would love to finally get this working. Any input would greatly be appreciated.

  19. #159

    Default

    everything works until i enter game it says the load config is not define please help be wonderful!

  20. #160

    Default

    I dont know whats changed, but my bot at about 2-3 games in stops picking up gold and rejuves. Any ideas? Kudos to you skidude you are the man.

Page 8 of 9 FirstFirst ... 6789 LastLast

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. D2NT patch 2.1
    By virrreee in forum Hacks Bots and Editors
    Replies: 1
    Last Post: 12-14-2009, 07:14 AM
  2. D2nt 1.7.2 help
    By Haxxo in forum Hacks Bots and Editors
    Replies: 0
    Last Post: 10-13-2009, 08:49 AM
  3. d2nt
    By toyota in forum Hacks Bots and Editors
    Replies: 1
    Last Post: 10-06-2009, 03:49 PM
  4. Replies: 0
    Last Post: 02-18-2008, 09:01 PM

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
  •