Well first go to your char_config.
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");
If you don't want it to bother picking up set items, just put "//" in front of this line
" NTConfig_NIPFilePath.push("advance/set.nip"); "
And so on and so fourth with every other line.
Next go to this folder. "D2NT31_NTBot42\D2NT\scripts\NTBot\item_configs\ad vance"
There you will see the pickit files (that explain the lines above) that show the stats an item must have before you pick it up.
Tip: There is a magic/rare pickit file in the D2NT bots and editors forum (where this thread should have been posted in) that only picks up the best of the best.
Tip: If you don't know how to edit this code, go back to the char config.
Code:
//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");
If you want it to pick up pretty much anything regardless of stats (like picking a shako with really low defense, it won't pick up a low quality normal boots) then take off the "//" from the normal set and put the "//" in front of the other sets. Advance is step above normal, and Extreme is the best of the best.
Bookmarks