Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
D2NT Whites?
#1
I want to have my bot pick up certain white items such as archon plates, gmbs, mage plates, etc. i have him be able to pick up whites. and i edited the whites that he can pick up in the setting folder. but every time he joins the game, or runs a new boss, it says

njip Warning: Error in [settings/whites.np] on line #blah blah [0]: Missing Operator

what does that mean??
Reply
#2
KidEcko Wrote:I want to have my bot pick up certain white items such as archon plates, gmbs, mage plates, etc. i have him be able to pick up whites. and i edited the whites that he can pick up in the setting folder. but every time he joins the game, or runs a new boss, it says

njip Warning: Error in [settings/whites.np] on line #blah blah [0]: Missing Operator

what does that mean??
Post white.np file

make sure NTConfig_NIPFilePath.push("whites.nip"); doesnt have // in front
Reply
#3
I have the same problem, no there's no // in front of the path.push file
I'd like it to pickup Cryptic Axes, I found the code letters and made a line for it, but it's not working (of course)
idk, it doesn't seem to be picking up any whites at all, 20 games now. Hasn't found the right ones yet? I'll report back Smile
Reply
#4
// SnagIt configuration
// Here is a list of preset nip files assuming you use nip package.
// If you want to add your own .nip files, just copy any line and enter the
// To disable a .nip file, just add "//" at the start of the line or delete the line.
//-----------------------------------------------------------------------------------
NTConfig_NIPFilePath.push("uniques.nip");
//NTConfig_NIPFilePath.push("sets.nip");
//NTConfig_NIPFilePath.push("whites.nip"); -> NTConfig_NIPFilePath.push("whites.nip");
NTConfig_NIPFilePath.push("runes.nip");
NTConfig_NIPFilePath.push("rares.nip");
NTConfig_NIPFilePath.push("magics.nip");
//NTConfig_NIPFilePath.push("gems.nip");
NTConfig_NIPFilePath.push("charmsjewels.nip");
NTConfig_NIPFilePath.push("ringsamulets.nip");
//NTConfig_NIPFilePath.push("potions.nip");
//NTConfig_NIPFilePath.push("moneymaker.nip");
//NTConfig_NIPFilePath.push("keys.nip");
NTConfig_NIPFilePath.push("elite.nip");
NTConfig_NIPFilePath.push("gold.nip");

NTConfig_SnagRange = 40; // Radius to check for dropped items. 40 is a good number here

Have you tryed and do this? Smile
Reply
#5
Yes I got the // out of the way, lolz!
My problem is in the scripts/settings/whites part.
I can't seem to change anything, there's weird code-symbols and idk what that's all about.
I make these lines:
[Cryptic Axe]
Name = 7pa : Quality = 3 : 194 = 4 : enhanceddamage>=1:flag=eth
Name = 7pa : Quality = 3 : 194 = 5 : enhanceddamage>=1:flag=eth
Name = 7pa : Quality = 3 : 194 = 6 : enhanceddamage>=1:flag=eth

but they fail.
Compare:
;[Ghost Spear e] °í½ºÆ®½ºÇǾî Á×¼û
Name = 7st : Quality = 3 : 194 = 6 : enhanceddamage>=1:flag=eth
Name = 7st : Quality = 3 : 194 = 0 : enhanceddamage>=1:flag=eth

See the code stuff? idk what's up with that.
Reply
#6
leave it there.
i dont think that you can actually insert an entire item like that, because the Name = 7pa has to actually match something in the "catalog"
i just use the default

;ÅëÂû¹«°ø
;[et polearm]
type=34: Quality = 1 :24>=150:194=4
type=34: Quality <= 3 :24>=170:flag=eth:194=0
type=34: Quality <= 3 :24>=170:flag=eth:194=4
type=34: Quality = 3 :24>=170:flag=eth:194=5:enhanceddamage>=1
type=34: Quality = 3 :24>=170:flag=eth:194=6:enhanceddamage>=1
US East L/NL-arowws4 arowws5 uber/organ runs for free. Free items too. Just ask. Must be member of this site.
[url=http://www.unleashmybrain.com][/url]
Reply
#7
Thanks Mob!
From scripts\libs\njipAliases: njipClassId["crypticaxe"]=256;
And from the same place: njipClassId["7pa"]=256;
That's where I got the idea for 7pa from, lolz.

I put my Cryptic Axe code in the lines above the [et polearm] lines you mention Mob. I think it fails because there's not any ";ÅëÂû¹«°ø" type stuff there.

So this polearm code will just pick-up big polearms and see if they're nasty? Works for me Smile
Reply
#8
uh.. glad i could help i guess.
could you post what you put?
US East L/NL-arowws4 arowws5 uber/organ runs for free. Free items too. Just ask. Must be member of this site.
[url=http://www.unleashmybrain.com][/url]
Reply
#9
I'm banned until Saturday, lolz! Trying to use D2 in seperate relms at the same time, epic fail!
I have to use HotSpot Shield to check in on my accts.
What happened to the layout here?? 0_0 light grey text?
Reply
#10
as you guessed it, the layout changed. if you want to go back to the default, scroll all the way to the bottom of the page and and select the default
US East L/NL-arowws4 arowws5 uber/organ runs for free. Free items too. Just ask. Must be member of this site.
[url=http://www.unleashmybrain.com][/url]
Reply
#11
FIGURED IT OUT:

I was removing the ";" from the descriptive lines, which are just for info, lolz!

So it finally picked something up! Not what I wanted so I put lots of ";" in front of things I don't want.

I added:
;[Cryptic Axe]
Name = 7pa : Quality = 3 : 194 = 4 : enhanceddamage>=1:flag=eth
Name = 7pa : Quality = 3 : 194 = 5 : enhanceddamage>=1:flag=eth
Name = 7pa : Quality = 3 : 194 = 6 : enhanceddamage>=1:flag=eth

And:
;[vortex shield]
Name = paf : Quality <= 3 : 39>=42 : 41>=42

So hopefully I'll pick those up too.
So now my only question is:
What exactly does: flag!=eth mean? Pickup? drop??
Reply
#12
flag!=eth means not eth. in another words, it wont pick up things that are eth. but if you have flag=eth, it will only pick up things that are eth
US East L/NL-arowws4 arowws5 uber/organ runs for free. Free items too. Just ask. Must be member of this site.
[url=http://www.unleashmybrain.com][/url]
Reply
#13
CaOne Wrote:// SnagIt configuration
// Here is a list of preset nip files assuming you use nip package.
// If you want to add your own .nip files, just copy any line and enter the
// To disable a .nip file, just add "//" at the start of the line or delete the line.
//-----------------------------------------------------------------------------------
NTConfig_NIPFilePath.push("uniques.nip");
//NTConfig_NIPFilePath.push("sets.nip");
//NTConfig_NIPFilePath.push("whites.nip"); -> NTConfig_NIPFilePath.push("whites.nip");
NTConfig_NIPFilePath.push("runes.nip");
NTConfig_NIPFilePath.push("rares.nip");
NTConfig_NIPFilePath.push("magics.nip");
//NTConfig_NIPFilePath.push("gems.nip");
NTConfig_NIPFilePath.push("charmsjewels.nip");
NTConfig_NIPFilePath.push("ringsamulets.nip");
//NTConfig_NIPFilePath.push("potions.nip");
//NTConfig_NIPFilePath.push("moneymaker.nip");
//NTConfig_NIPFilePath.push("keys.nip");
NTConfig_NIPFilePath.push("elite.nip");
NTConfig_NIPFilePath.push("gold.nip");

NTConfig_SnagRange = 40; // Radius to check for dropped items. 40 is a good number here

Have you tryed and do this? Smile

confused::pblank:
I entered the gold file exactly but it says it doesnt exist. think you can send me a link/ picture of the file in the setting sub folder so i can make this work? PLEASE
Reply
#14
I didn't use the nip-gold file, I just added this line to the "runes" box:

name = gold : 14>900

and he picks gold up! Just put a ";" in front when he's loaded.
My bot picks up Cryptic Axes! Hooray!
Reply
#15
5Cats Wrote:I didn't use the nip-gold file, I just added this line to the "runes" box:

name = gold : 14>900

and he picks gold up! Just put a ";" in front when he's loaded.
My bot picks up Cryptic Axes! Hooray!

Awesome! It Works, Thank you!
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  [D2NT Release] Druid Script skidude 20 17,266 08-25-2012, 01:20 AM
Last Post: comper
  D2NT BoT Gh0sT17 52 2,056 07-31-2012, 11:10 PM
Last Post: comper
  D2nt need help on some stuff wishyq 3 170 07-22-2012, 12:44 PM
Last Post: comper
  Little Help Please? (D2NT) pnsmcgraw 12 271 07-16-2012, 02:46 PM
Last Post: Mythosis
  MasivB's D2NT Simple Unique PickIt masivb 1 118 07-03-2012, 05:03 AM
Last Post: comper
  D2nt - how do i stay in game when sojs sell? brianwalter86 5 354 07-01-2012, 02:02 PM
Last Post: comper
  Nooby D2NT Questions Kieran Wilson 0 129 06-25-2012, 04:35 PM
Last Post: Kieran Wilson
  [D2NT Release]Item Logging with XML 3.0+ skidude 76 14,554 06-25-2012, 01:27 PM
Last Post: masivb
  D2nt Bot jewel pickit/godly item pickit Nightwish 3 232 06-23-2012, 04:18 AM
Last Post: comper
  someone please help my d2nt bot wont kill any bosses mcmullenp4 2 178 06-19-2012, 10:18 AM
Last Post: comper

Forum Jump:


Users browsing this thread: 1 Guest(s)