Posts: 15
Threads: 5
Joined: Dec 2010
Reputation:
0
In my magic_rare.nip
I added under each one respectively
[Name] == SmallCharm && [Quality] == magic # [ilvl] == 99
[Name] == GrandCharm && [Quality] == magic # [ilvl] == 99
My bot threw away a sc and a gc from baal the other night... le sad face.
Thank you
Posts: 452
Threads: 30
Joined: Jun 2005
Reputation:
0
ezewalter Wrote:In my magic_rare.nip
I added under each one respectively
[Name] == SmallCharm && [Quality] == magic # [ilvl] == 99
[Name] == GrandCharm && [Quality] == magic # [ilvl] == 99
My bot threw away a sc and a gc from baal the other night... le sad face.
Thank you that line will not work,as ilvl does not appear in the NTItemAlias file. The only thing that is there is level and itemlevelreq .Now the itemlevelreq line is how you find stuff for your bot to pick up at certain CHARACTER levels and the word level is used to designate item level so to pick up charms of ilvl 99 you would use
[Name] == SmallCharm && [Quality] == magic # [level] >= 99
[Name] == GrandCharm && [Quality] == magic # [level] >= 99
I assume you want ilvl 99 charms for the purposes of rerolling, but here is a little fact about d2nt 3.1.
If in your character config file,you have cubing enabled and small and grand charms uncommented in the cubing section,the bot will automatically take the highest ilvl charms to cube only it will do 1 at a time,until it rolls something that is in your magic_rare pickit.
[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)
Posts: 15
Threads: 5
Joined: Dec 2010
Reputation:
0
Posts: 452
Threads: 30
Joined: Jun 2005
Reputation:
0
No problem at all glad to help
[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)
Posts: 15
Threads: 5
Joined: Dec 2010
Reputation:
0
Morning,
I placed that line into my magic_rare nip file, however, after last night's runs, I noted that she passed on another sc from baal.
I did change the line to >= 95, hoping she would store all small and grand charms of ilvl 95 and higher.
Could that be the reason she passed? I'm mistaken and that isn't how the code works?
I would've turned cubing to true, but I'm concerned on having to have the character farm gems and cube pgems and take up space, yadda yadda yadda.
Thank you for your time and consideration,
Mike
Posts: 452
Threads: 30
Joined: Jun 2005
Reputation:
0
ezewalter Wrote:Morning,
I placed that line into my magic_rare nip file, however, after last night's runs, I noted that she passed on another sc from baal.
I did change the line to >= 95, hoping she would store all small and grand charms of ilvl 95 and higher.
Could that be the reason she passed? I'm mistaken and that isn't how the code works?
I would've turned cubing to true, but I'm concerned on having to have the character farm gems and cube pgems and take up space, yadda yadda yadda.
Thank you for your time and consideration,
Mike
hell baal should drop only the highest ilvl charms and if your bot doesn't pick it up i wouldn't worry about it
also if you set the cubing to true the bot will only farm enough stuff to roll 1 item at a time
[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)
Posts: 15
Threads: 5
Joined: Dec 2010
Reputation:
0
Hey hey,
I went ahead and turned on cubing, hopefully the bot will roll some good charms for me.
I posted a question in regards to the 'godly pickit script' but haven't gotten a response, so I'm going to bring it to your attention if you have some time available.
I've got a handful of questions in regards to the verbage of the script. I've been trying to teach myself what it all means, but am getting stuck on a few pieces.
We'll use this line for example:
[Name] == Monarch && [Quality] == magic && [Flag] != ethereal # [Sockets] >= 4 && [Defense] >= 130 && [ItemReqPercent] == -30
When it says [Quality] == magic, that means it's hunting for a magic monarch, correct?
If so, can monarch (or any item) drop magic and socketed?
Also, the [Flag] != ethereal, does this mean if the item's ethereal it'll avoid it?
I'm also attempting to set the bot to hunt for eth buggable items, so non socketed, non superior etheral armors.
This is mainly why I'm curious about the [flag].
In this line, for example
[Name] == SmallCharm && [Quality] == magic # [FireMaxDam] >= 35 || [LightMaxDam] >= 85 || [ColdMaxDam] >= 25
Does || mean the same thing as "or"?
So, find a magic small charm that has +25 fire damage OR +86 light damage OR +25 cold damage?
Or something along those lines... true or false?
For small charms, I'd like to find +5 all res scs.
What would that line look like?
Finally,
[Name] == SmallCharm && [Quality] == magic && [Prefix] == 1407 && [Suffix] > 0
What in the world is that?
Cheers,
Mike
|