![]() |
Avoid selling uniqe items - 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: Avoid selling uniqe items (/thread-47108.html) |
Avoid selling uniqe items - M@trixXx - 02-27-2011 Hi, I would like my bot to stop selling uniqe items, where can I find a script to edit it pls? Thanks in advance. Avoid selling uniqe items - Jammer74 - 02-28-2011 in your character config character name file (which is located D2NT\scripts\NTBot\char_configs) you will see a list that looks like this Code: //----------------------------------------------------------------------------------- In this case my bot uses the normal pickit so look in D2NT31_NTBot42\D2NT\scripts\NTBot\item_configs\ to find the pickit folders and find the normal FOLDER(not to be confused w/ the normal file inside the folder) inside the folder are the nip files which are edited w/ a text editor like notepad or something better like notepad++.Find the unique nip file and open it up,then find whatever unique you want to keep(i dont recommend keeping everything the bot will fill up in a few hours) and remove everything after the word unique in the script line like this Code: [Name] == Sallet && [Quality] == unique && [Flag] == ethereal # [EnhancedDefense] >= 220 && [ColdResist] == 40 && [FireResist] == 50 && [LightningResist] == 40 // Rockstopper would be changed to this Code: [name] == Sallet && [Quality] == unique i hope that helps you do what you want to do Avoid selling uniqe items - M@trixXx - 02-28-2011 Hi thanks changed all i needed hope it heelps just got one more question about addingitems to take and keep in inv. need to keep essences, so i've added a couple of lines like this Code: // ##### Essences ###################### i've added it in .../items_config/normal/normal.nip if you could check it... Thanks Avoid selling uniqe items - Jammer74 - 02-28-2011 M@trixXx Wrote:Hi thanks changed all i needed hope it heelpsI assume your using 3.0 instead of 3.1(3.1 has essence and token support) so if you are using 3.o this is what you need to do in addition to what you did already open up NTItemAlias located \D2NT\scripts\libs\common\NTItemAlias.NTL and cntrl+f this next line Code: _NTIPAliasClassID ["Std"] = 653; _NTIPAliasClassID ["standardofheroes"] = 653; and add these lines under it Code: _NTIPAliasClassID ["te1"] = 654; _NTIPAliasClassID ["twistedessenceofsuffering"] = 654; Avoid selling uniqe items - M@trixXx - 02-28-2011 thanks man it works ![]() Avoid selling uniqe items - Jammer74 - 02-28-2011 my pleasure glad to help |