For any key issues or account management simply open a helpdesk ticket if you don't have an AIO Launcher Key yet, what are you waiting for?
ty for the clear explanation sirHello! 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 belowHello! 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
if you put // in front of any line. that line will be ignoredFormatting what I listed below
//[Name] == ChainGloves && [Quality] == Unique && [Flag] != Ethereal # [ItemMagicBonus] >= 35 //CHANCE GUARDS
would become
//[Name] == ChainGloves && [Quality] == Unique
ty sirif you put // in front of any line. that line will be ignored
[Name] == ChainGloves && [Quality] == Unique
this will be right.