Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Need help setting up my bot :P
#1
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.
Reply
#2
Lazagnah Wrote: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.
Wink Thanks Wink
Reply
#3
Sure thing, thanks for the help. By the way, your respond was really fast! :Big Grin
Reply
#4
Lazagnah Wrote:Sure thing, thanks for the help. By the way, your respond was really fast! :Big Grin


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.
Wink Thanks Wink
Reply
#5
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?
Reply
#6
Lazagnah Wrote: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[COLOR="Silver"]

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

[/COLOR]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.
Wink Thanks Wink
Reply
#7
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
Reply
#8
Lazagnah Wrote: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.
Wink Thanks Wink
Reply
#9
Thank you very much, you have been very helpful!
Reply
#10
Lazagnah Wrote: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.
Wink Thanks Wink
Reply
#11
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
Reply
#12
your-death Wrote: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.
Wink Thanks Wink
Reply
#13
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
Reply
#14
OnaPalehorse Wrote: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.
Wink Thanks Wink
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Setting up multi bot with etal or kolton momme 13 282 06-22-2012, 07:10 PM
Last Post: comper
  Need Help Setting Up a Leader And Leech For Private Game runs [Etal v7] Kurts 4 360 04-01-2012, 06:39 PM
Last Post: Kurts
  need help setting up a public bot please yosup117 2 249 03-14-2012, 01:17 PM
Last Post: comper
  Need Help Setting up Pickit for Classic danielterrones 0 138 05-31-2011, 01:31 AM
Last Post: danielterrones
  can anyone help me with setting up a bot? joshuajohnson 3 411 05-27-2011, 12:27 AM
Last Post: TyKe
  setting pickit to pick set items Warbryde 4 503 04-14-2011, 11:51 AM
Last Post: Warbryde
  Setting up bot schwig84 3 364 01-01-2011, 04:58 AM
Last Post: Kilajs
  setting up Druid to run on D2NT smokie 1 1,538 10-03-2010, 04:09 AM
Last Post: DNA64
  Setting Pickit to keep unid'ed mkeaneaz 5 570 06-13-2010, 07:05 AM
Last Post: skidude
  ntbot setting cuauhtemoc71 0 625 03-29-2009, 12:15 AM
Last Post: cuauhtemoc71

Forum Jump:


Users browsing this thread: 1 Guest(s)