Blizzard Sector
How do I know which items my bot is picking up? - Printable Version

+- Blizzard Sector (https://www.blizzsector.co)
+-- Forum: Diablo II (https://www.blizzsector.co/forum-4.html)
+--- Forum: Hacks Bots and Editors (https://www.blizzsector.co/forum-16.html)
+--- Thread: How do I know which items my bot is picking up? (/thread-46745.html)



How do I know which items my bot is picking up? - TexaslonghornJF - 09-16-2010

(Update, just caught my bot NOT picking up UNIQ War boots...uh oh)

Hey, I'm really new to this devilish: . How do I know which items my bot is picking up / leaving on the ground? I ran my bot for three hours on Meph/countess runs and he got 2x terror keys and a shaft. I'd like to know if there were other uniques he left on the ground, and what is the minumum rune he will actually pick up. Thanks. My script is (I think):

//-----------------------------------------------------------------------------------
// SnagIt configuration
// Select one group only (normal / advance / extreme)
//-----------------------------------------------------------------------------------
//NTConfig_NIPFilePath.push("normal/normal.nip");
//NTConfig_NIPFilePath.push("normal/magic_rare.nip");
//NTConfig_NIPFilePath.push("normal/set.nip");
//NTConfig_NIPFilePath.push("normal/unique.nip");
//NTConfig_NIPFilePath.push("normal/craft.nip");
NTConfig_NIPFilePath.push("advance/normal.nip");
NTConfig_NIPFilePath.push("advance/magic_rare.nip");
NTConfig_NIPFilePath.push("advance/set.nip");
NTConfig_NIPFilePath.push("advance/unique.nip");
NTConfig_NIPFilePath.push("advance/craft.nip");
//NTConfig_NIPFilePath.push("extreme/normal.nip");
//NTConfig_NIPFilePath.push("extreme/magic_rare.nip");
//NTConfig_NIPFilePath.push("extreme/set.nip");
//NTConfig_NIPFilePath.push("extreme/unique.nip");
//NTConfig_NIPFilePath.push("extreme/craft.nip");
NTConfig_SnagRange = 40; // Radius to check for dropped items. 40 is a good number here


THANKS!!! Like I said, I'm WAY new to this. Any help would be appreciated!!! laugh:

(I hope you know what I'm asking...I'm just worred that my bot is only picking up like WAY uber items)


How do I know which items my bot is picking up? - bugme143 - 09-16-2010

I remember waaaaay back when, (and yes I know I'm dating myself) when Diablo was out, there were programs that told you what you missed on the ground. I loved that, because I would just fly through levels alternating chain lightning and flame wave. ahhhhh, those were the days!
So, is there a way to add that feature to D2NT, like a .dll to inject, or an add-on to dl?


How do I know which items my bot is picking up? - TexaslonghornJF - 09-16-2010

Hehe I agree, but I'm not trying to convey that idea. I'm asking how do I know which items my bot is told to pick up and which to leave on the ground? Like, shaftstop is obviously a "pick up" item because it's now in my stash...but are vamp gazes "pick up" items? I know there is probably a way to see which items are checked off to keep and which are checked off to not keep...I'm just not sure where this list is (and if there is a list, what the list includes).


How do I know which items my bot is picking up? - DNA64 - 09-16-2010

I guess you could have a script tell you that you didn't pickup a item, but since you didn't ID the item it would do little good, especially for Magical or Rare items. I have mine set to tell me what it sold, that to me is more critical. If your bot isn't picking up something it's not in the pickit list or didn't meet the SOQ.

You have your list set to Advanced which will pick up a good amount of items, but only ones listed and only if they meet the standards of quality (SOQ) specified which are higher then in the normal list. I suggest you edit the lists or at least look them over as some may be disabled (//).

The example shown below is how you have the bot keep any of the following boots even if they have low specs. (The bot wont keep ethereal items if the following tag is added: [Flag] != ethereal #)

Quote: // ##### Boots #########################
[Name] == Boots && [Quality] == unique && [Flag] != ethereal #
[Name] == SharkskinBoots && [Quality] == unique && [Flag] != ethereal #
[Name] == MeshBoots && [Quality] == unique && [Flag] != ethereal #
[Name] == BattleBoots && [Quality] == unique && [Flag] != ethereal #
[Name] == WarBoots && [Quality] == unique && [Flag] != ethereal #
[Name] == MyrmidonGreaves && [Quality] == unique && [Flag] != ethereal #
[Name] == ScarabshellBoots && [Quality] == unique #
[Name] == BoneweaveBoots && [Quality] == unique && [Flag] != ethereal #
[Name] == MyrmidonGreaves && [Quality] == unique # && [Flag] != ethereal #
I've made a lot of improvements to my lists as well as the bot and I plan on doing even more and adding more features, some ideas I had others have already made, though some of those I didn't like so I'll make better ones to replace then. Maybe I'll post something up here..

oh one thing about picking up everything, you'll end up spending more time muling then playing. :p
Just go for the GG stuff why bother with the trash?

Happy Botting!,
DNA64 devilish:


How do I know which items my bot is picking up? - telconstar99 - 09-19-2010

Hey DNA64,

You can certainly tell what items your bot is set to pick up. Your bot has three types of pick up settings: normal, advanced, and extreme. It looks like you've commented out the normal and extreme and you are using advanced. This is the default behavior so it's probably what 99% of people do.

Want to see what the advanced setting gives you? Go into the following folder:

Quote:<NT_Bot Root folder>\scripts\NTBot\item_configs\advance
Now you can open up each file in a text editor to see if you are picking up the item or not. If the item is commented out (aka it has a "//" in front of it) then you are not picking it up. If you want to stop picking it up, simply add a "//" in front of it.

Want to find out what runes you are picking up? Open up normal.nip and look for a particular rune. Happy hunting.


How do I know which items my bot is picking up? - DNA64 - 09-19-2010

telconstar99 Wrote:Hey DNA64,

You can certainly tell what items your bot is set to pick up. Your bot has three types of pick up settings: normal, advanced, and extreme. It looks like you've commented out the normal and extreme and you are using advanced. This is the default behavior so it's probably what 99% of people do.

Want to see what the advanced setting gives you? Go into the following folder:

Now you can open up each file in a text editor to see if you are picking up the item or not. If the item is commented out (aka it has a "//" in front of it) then you are not picking it up. If you want to stop picking it up, simply add a "//" in front of it.

Want to find out what runes you are picking up? Open up normal.nip and look for a particular rune. Happy hunting.

[B]TexaslonghornJF is the one having issues not me lol Tongue
[/B]