Results 1 to 14 of 14
  1. #1

    Default Need help setting up my bot :P

    Sorry if this is a re-post, I couldn't find exactly what I was looking for. Okay basically I just want my bot to find LLD items. I see all this code being put up on the forums, however I do not know where to insert this code exactly. ( I am new to this program ) There's only a handful of items I am wanting though, like, 3 socket level 18 helm, throwing spears or swords, and a 4 socket shield, and some enhanced damage jewels. I tried to mess around with some of the coding to get my guy to pick up rare throwing spears for my level 18 but I just messed it up. Any help would be great, thank you.

  2. #2
    Elite Moderator comper's Avatar
    Join Date
    Dec 2011
    Location
    USA
    Battle Tag
    comper
    Posts
    955

    Default

    Quote Originally Posted by Lazagnah View Post
    Sorry if this is a re-post, I couldn't find exactly what I was looking for. Okay basically I just want my bot to find LLD items. I see all this code being put up on the forums, however I do not know where to insert this code exactly. ( I am new to this program ) There's only a handful of items I am wanting though, like, 3 socket level 18 helm, throwing spears or swords, and a 4 socket shield, and some enhanced damage jewels. I tried to mess around with some of the coding to get my guy to pick up rare throwing spears for my level 18 but I just messed it up. Any help would be great, thank you.

    I will have to look thru my files or see if I can find it back on the web for a lld nip file
    if I don't find it I can get with you and make the lines for what you are wanting
    thanks
    Please add to my Reputation if you find my post reasonable, beneficial, or helpful.
    Bottom left corner of the post.
    Thanks

  3. #3

    Default

    Sure thing, thanks for the help. By the way, your respond was really fast! :

  4. #4
    Elite Moderator comper's Avatar
    Join Date
    Dec 2011
    Location
    USA
    Battle Tag
    comper
    Posts
    955

    Default

    Quote Originally Posted by Lazagnah View Post
    Sure thing, thanks for the help. By the way, your respond was really fast! :

    you was say you want to keep a 4 socket shield - a Monarch is the lowest for a 4 socket with a char lvl of 54, unless you are taking about a paly shield which they can have 4 sockets
    thanks
    Please add to my Reputation if you find my post reasonable, beneficial, or helpful.
    Bottom left corner of the post.
    Thanks

  5. #5

    Default

    Sorry I wasn't more specific. Yes the pally shield is what I am looking for. I am only looking for level 18 gear. By the way, the "//" in front of the lines, does that mean it will not pick up those items? For example,
    // ##### Throwing ######################
    [Name] == ThrowingSpear && [Quality] <= rare && [Flag] == Ethereal

    I found this line somewhere in these forums but the thing I am wondering, will this line work?

  6. #6
    Elite Moderator comper's Avatar
    Join Date
    Dec 2011
    Location
    USA
    Battle Tag
    comper
    Posts
    955

    Default

    Quote Originally Posted by Lazagnah View Post
    Sorry I wasn't more specific. Yes the pally shield is what I am looking for. I am only looking for level 18 gear. By the way, the "//" in front of the lines, does that mean it will not pick up those items? For example,
    // ##### Throwing ######################
    [Name] == ThrowingSpear && [Quality] <= rare && [Flag] == Ethereal

    I found this line somewhere in these forums but the thing I am wondering, will this line work?

    you have to leave the // on the lines that looks like this - // ##### Throwing ###################### <- just telling you what is in that group below it
    and lines that start with [Name] or [Type] will be the lines you want to remove the // if you want the bot to pick up that item and check the stats and if it matches or better then it will keep it if not then it will sell it
    for that line you have there - [Name] == ThrowingSpear && [Quality] <= rare && [Flag] == Ethereal <- means bot will pick up ALL throwning spears up to rare and they have to be eth - so the most thing on that line is the have to be eth if not it won't keep them

    ---------- Post added at 11:42 AM ---------- Previous post was at 11:23 AM ----------

    here you go I only found 3 files, this is a zip file plus it has a Read me file explaining what you can do - lld nip files.zip
    hope this helps
    thanks
    Please add to my Reputation if you find my post reasonable, beneficial, or helpful.
    Bottom left corner of the post.
    Thanks

  7. #7

    Default

    Thanks for the information, i'll play around with these and see if it works. One more question, will these lines work? I want my bot to pick up non ethereal items.

    This is the untouched line
    [Name] == Crown && [Quality] == Superior && [Flag] != Ethereal # [EnhancedDefense] == 15 && [Sockets] == 3

    My version
    [Name] == Crown && [Quality] == Superior && [Flag]+[EnhancedDefense] == 15 && [Sockets] == 3

    untouched line
    [Name] == ThrowingSpear && [Quality] <= rare && [Flag] == Ethereal

    My version
    [Name] == ThrowingSpear && [Quality] <= rare

    Does my version work and if not, what do I need to fix in order to pick up non ethereal items. Thanks
    Last edited by Lazagnah; 04-20-2012 at 03:51 AM.

  8. #8
    Elite Moderator comper's Avatar
    Join Date
    Dec 2011
    Location
    USA
    Battle Tag
    comper
    Posts
    955

    Default

    Quote Originally Posted by Lazagnah View Post
    Thanks for the information, i'll play around with these and see if it works. One more question, will these lines work? I want my bot to pick up non ethereal items.

    This is the untouched line
    [Name] == Crown && [Quality] == Superior && [Flag] != Ethereal # [EnhancedDefense] == 15 && [Sockets] == 3

    My version
    [Name] == Crown && [Quality] == Superior && [Flag]+[EnhancedDefense] == 15 && [Sockets] == 3

    untouched line
    [Name] == ThrowingSpear && [Quality] <= rare && [Flag] == Ethereal

    My version
    [Name] == ThrowingSpear && [Quality] <= rare

    Does my version work and if not, what do I need to fix in order to pick up non ethereal items. Thanks
    sorry about that not getting back sooner was busy with some other stuff
    this line -
    This is the untouched line
    [Name] == Crown && [Quality] == Superior && [Flag] != Ethereal # [EnhancedDefense] == 15 && [Sockets] == 3 <- is correct it will pick up and safe a non-eth superior crown -has to have 15 ed and 3 sockets
    for your line is wrong - the name or type and quality and non or eth stuff like that has to be on the left side and if there going to be stats on it they are on the right side after thes # so with your line it should throw up an error msg

    and this line -
    untouched line
    [Name] == ThrowingSpear && [Quality] <= rare && [Flag] == Ethereal <- means it will pick up throwing spears up to rare and HAS to be eth and keeps then unid
    and yours -
    My version
    [Name] == ThrowingSpear && [Quality] <= rare <- mean it will pick ANY throwing spears up to rare

    these mean this
    == equal to
    <= less or equal
    >= greater or equal
    != is not equal to
    && and
    || or
    [Property Keywords] must be placed first then # [Stat Keywords] -> Insert '#' symbol between [Property Keywords] and [Stat Keywords]

    so if you want non-eth items then this has to be in your line to the left of the # [Flag] != Ethereal just line this line -
    [Name] == Crown && [Quality] == Superior && [Flag] != Ethereal # [EnhancedDefense] == 15 && [Sockets] == 3
    Please add to my Reputation if you find my post reasonable, beneficial, or helpful.
    Bottom left corner of the post.
    Thanks

  9. #9

    Default

    Thank you very much, you have been very helpful!

  10. #10
    Elite Moderator comper's Avatar
    Join Date
    Dec 2011
    Location
    USA
    Battle Tag
    comper
    Posts
    955

    Default

    Quote Originally Posted by Lazagnah View Post
    Thank you very much, you have been very helpful!
    you are welcome just let me know if you need any other help
    thanks
    Please add to my Reputation if you find my post reasonable, beneficial, or helpful.
    Bottom left corner of the post.
    Thanks

  11. #11
    Newcomer your-death's Avatar
    Join Date
    Apr 2012
    Location
    austin,tx
    Battle Tag
    your-death
    Posts
    1

    Default

    i am new at this bot thing and have no idea how it works or how so set my scripts for a hammerden any help would be nice i run Etal V7 - Green Goblin

  12. #12
    Elite Moderator comper's Avatar
    Join Date
    Dec 2011
    Location
    USA
    Battle Tag
    comper
    Posts
    955

    Default

    Quote Originally Posted by your-death View Post
    i am new at this bot thing and have no idea how it works or how so set my scripts for a hammerden any help would be nice i run Etal V7 - Green Goblin
    I am not at home and will be off and on at different times for the next 4 days so please bare with me on the help
    the best thing right now would be for you to read thru this guide - Etal First-Time Configuration - Project Etal Wiki and then I can help you with any ? you have and you can pm if you like, that way when I do check back in I know for sure I have a msg
    the biggest thing is to get your inventory setting right so it doesn't drop your charms and stuff you want to keep in your inventory and if you get it to running and it does drop your items then click the pause key on your key board to pause the bot and you can move it manually to pick them back up - that is the Pause/Break key - then just click it again for bot to sart back up.
    thanks
    Please add to my Reputation if you find my post reasonable, beneficial, or helpful.
    Bottom left corner of the post.
    Thanks

  13. #13

    Default

    After downloading this bot, and running the character configuration by loading profile and joining a game.. Im attempting to follow the instructions on the boss configuration however my computer is unable to open any of these files...listed as xxxx.ntj files... I can't figure out what program I need to open these so I can edit them.. or am I doing something wrong...? explain if so please.



    solved using notepad. disregard ty
    Last edited by OnaPalehorse; 04-23-2012 at 04:32 AM.

  14. #14
    Elite Moderator comper's Avatar
    Join Date
    Dec 2011
    Location
    USA
    Battle Tag
    comper
    Posts
    955

    Default

    Quote Originally Posted by OnaPalehorse View Post
    After downloading this bot, and running the character configuration by loading profile and joining a game.. Im attempting to follow the instructions on the boss configuration however my computer is unable to open any of these files...listed as xxxx.ntj files... I can't figure out what program I need to open these so I can edit them.. or am I doing something wrong...? explain if so please.



    solved using notepad. disregard ty
    yes notepad or you can download notepad++ which should show the files better then just plain notepad
    thanks
    Please add to my Reputation if you find my post reasonable, beneficial, or helpful.
    Bottom left corner of the post.
    Thanks

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. help me with setting up a d2nt bot please
    By survivur in forum Introductions
    Replies: 1
    Last Post: 12-26-2011, 02:54 PM
  2. Setting your Bot to never sell anything
    By lottodayo in forum Help and Suggestions!
    Replies: 1
    Last Post: 07-07-2011, 09:43 AM
  3. Bot: can anyone help me with setting up a bot?
    By joshuajohnson in forum Hacks Bots and Editors
    Replies: 3
    Last Post: 05-26-2011, 11:57 PM
  4. Setting up bot
    By schwig84 in forum Hacks Bots and Editors
    Replies: 3
    Last Post: 01-01-2011, 04:28 AM
  5. help setting up mm.bot
    By duck-sauce in forum Hacks Bots and Editors
    Replies: 1
    Last Post: 05-30-2006, 07:13 PM

Posting Permissions

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