I want all my stuff to be left Unid

smby

Member
Hello! You need edit pickit. Here is example:
[Type] == Amulet && [Quality] == Unique # [ItemAllSkills] == 2 && [FireResist] >= 20
The stuff after the # are stats on the item that it looks for so the bot will identify all unique amulets so that it can see if it has the stats you want. If you delete everything after the #, it will keep item unidentified:
[Type] == Amulet && [Quality] == Unique
 
Hello! You need edit pickit. Here is example:
[Type] == Amulet && [Quality] == Unique # [ItemAllSkills] == 2 && [FireResist] >= 20
The stuff after the # are stats on the item that it looks for so the bot will identify all unique amulets so that it can see if it has the stats you want. If you delete everything after the #, it will keep item unidentified:
[Type] == Amulet && [Quality] == Unique
ty for the clear explanation sir
 
Hello! You need edit pickit. Here is example:
[Type] == Amulet && [Quality] == Unique # [ItemAllSkills] == 2 && [FireResist] >= 20
The stuff after the # are stats on the item that it looks for so the bot will identify all unique amulets so that it can see if it has the stats you want. If you delete everything after the #, it will keep item unidentified:
[Type] == Amulet && [Quality] == Unique
Formatting what I listed below

//[Name] == ChainGloves && [Quality] == Unique && [Flag] != Ethereal # [ItemMagicBonus] >= 35 //CHANCE GUARDS

would become

//[Name] == ChainGloves && [Quality] == Unique
 

NukePunch

Member
Formatting what I listed below

//[Name] == ChainGloves && [Quality] == Unique && [Flag] != Ethereal # [ItemMagicBonus] >= 35 //CHANCE GUARDS

would become

//[Name] == ChainGloves && [Quality] == Unique
if you put // in front of any line. that line will be ignored
[Name] == ChainGloves && [Quality] == Unique
this will be right.
 
Top