Hi community!
I'm trying to rewrite according my necessities the custom rules, and need to know someyhing about the logic of AIF and how to force the bot to id determinated items bypassing the chaos recipe that instead want to store them unid.
For example I need to pick-up, id and keep (if the keep rule is verified) the rare unid chest Vaal Regalia; so i write
Pick-up: item.IsRare and item.FullNameContains("Vaal Regalia")
id : item.IsRare and item.IsChest and item.FullNameContains("Vaal Regalia")
keep : item.IsRare and item.IsChest and (item.TotalEnergyShield >= 250)
Chaos recipe is ON (number of chests to be stored =1) and all the tab stash are correctly setted (in com-lib also), there is no chest in the tab for the recipe.
So the bot pick up a Vaal Regalia and a Carnal Armour (so 2 different chests), back to HO, go to the stash.
With the id rule, i want that the regalia, indipendently by the chaos recipe, will be id and keeped (if keep rule is ok), selled otherwise; while the other chest is to be stored for the recipe.
Instead, if the regalia is the first to be processed it is ever keeped unid for the recipe, while the other armour will be id and selled.
If the Carnal Armour is the first, all is ok, it is keeped unid, and the regalia is id and keeped/selled (beside i think that it is not my id rule to identify the regalia, but the generic id rule of the bot for the rares)
I want to understand if Chaos recipe override the id rules (and so it will ever stash the regalia if needed for the recipe), or if my id rules sucks.
I'm trying to rewrite according my necessities the custom rules, and need to know someyhing about the logic of AIF and how to force the bot to id determinated items bypassing the chaos recipe that instead want to store them unid.
For example I need to pick-up, id and keep (if the keep rule is verified) the rare unid chest Vaal Regalia; so i write
Pick-up: item.IsRare and item.FullNameContains("Vaal Regalia")
id : item.IsRare and item.IsChest and item.FullNameContains("Vaal Regalia")
keep : item.IsRare and item.IsChest and (item.TotalEnergyShield >= 250)
Chaos recipe is ON (number of chests to be stored =1) and all the tab stash are correctly setted (in com-lib also), there is no chest in the tab for the recipe.
So the bot pick up a Vaal Regalia and a Carnal Armour (so 2 different chests), back to HO, go to the stash.
With the id rule, i want that the regalia, indipendently by the chaos recipe, will be id and keeped (if keep rule is ok), selled otherwise; while the other chest is to be stored for the recipe.
Instead, if the regalia is the first to be processed it is ever keeped unid for the recipe, while the other armour will be id and selled.
If the Carnal Armour is the first, all is ok, it is keeped unid, and the regalia is id and keeped/selled (beside i think that it is not my id rule to identify the regalia, but the generic id rule of the bot for the rares)
I want to understand if Chaos recipe override the id rules (and so it will ever stash the regalia if needed for the recipe), or if my id rules sucks.