What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

[ItemFilter] HighEnd Looting Profile For AdvancedItemFilter

nice! it works for me.
my ratio is like 5-1, since 99% of them are garbage, I do not wish to add more garbage to sift thru every nights.
BTW you got a good jewel and abyss jewels AIF filter that keeps 10+ chaos? ty
not at the moment but please feel free to create the list for the rest of us
 
nope, i dont even bother with them anymore.. at this point in the league the market is so flooded with them that only stuff with multiple t1/t2 rolls is worth much at all and I wasnt finding those.,
 
Update V3.4:
Added approx. 35 new jewel keep rules. They are not very strict, but will help with vendoring trash jewels. Most rules contain +% to life. For ex. +%life and axedmg or sworddmg, +%life and all resist, +%life +critchance +critmulti, and so on.

Link:
https://files.fm/u/bkqnk4yr
 
Last edited:
[CustomItemRules] The rule "item.IsSealedProphecy " has returned an error.
[CustomItemRules] The call you tried to make may be incorrect, it should be "item.YOUR_DATA"
[CustomItemRules] If the call seems correct, the data must not be available (yet?) or have a different naming, consider disabling this rule
[CustomItemRules] The available properties can be found in the "EvaluableItem.cs" in the "Classes" folder.
[CustomItemRules] To avoid any further issues, bot will stop now, please verify your file.


hi radziu~ thankyou for the file~ but how to fix this? :)
 
Update your aif, it recognizes sealed prophecies then.
 
Last edited:
SO i dl the new AIF in faqs and tried loading the highend rules that was mentioned got the latest version and i get the error that shuts down the bot.....
[CustomItemRules] The rule "item.IsElderItem " has returned an error.
[CustomItemRules] The call you tried to make may be incorrect, it should be "item.YOUR_DATA"
[CustomItemRules] If the call seems correct, the data must not be available (yet?) or have a different naming, consider disabling this rule
[CustomItemRules] The available properties can be found in the "EvaluableItem.cs" in the "Classes" folder.
[CustomItemRules] To avoid any further issues, bot will stop now, please verify your file.
and
[CustomItemRules] The rule "item.IsShaperItem " has returned an error.
[CustomItemRules] The call you tried to make may be incorrect, it should be "item.YOUR_DATA"
[CustomItemRules] If the call seems correct, the data must not be available (yet?) or have a different naming, consider disabling this rule
[CustomItemRules] The available properties can be found in the "EvaluableItem.cs" in the "Classes" folder.
[CustomItemRules] To avoid any further issues, bot will stop now, please verify your file.

i have the newest AIF any one know a fix besides unchecking the rules
 
IMPORTANT:
Enable Shaper/Elder Items in your AIF custom rules - edit your AIF\Classes\EvaluableItem.cs file and add the below somewhere towards the bottom with the other bits (Thanks to WiN):

[Description("Elder Item")]
public bool IsElderItem => _myItem.IsElderItem;

[Description("Shaper Item")]
public bool IsShaperItem => _myItem.IsShaperItem;


You have to remove that rule or do this or it won't load aif
 
Running fine for me, not sure what you're doing.

Edit:
Just quadruple checked, downloaded the file from link provided, and bot ran 6 hours with no errors in AIF.
 
Last edited:
Running fine for me, not sure what you're doing.

Edit:
Just quadruple checked, downloaded the file from link provided, and bot ran 6 hours with no errors in AIF.
Aight, just re-downloaded it and keeping it running, if anything will try to save a log this time. also it saves all Stygian Vise whatsoever, kind of clogging up my inventory so I changed to to save elder/shaped or ilvl > 84.
 
ok, caught it again.

[CustomItemRules] The rule "item.IsRare and item.IsJewel and (item.JewelMaximumLife >= 5 and item.JewelDualCritChance >= 14 and item.JewelDualCritMult >= 15) " has returned an error.
[CustomItemRules] The call you tried to make may be incorrect, it should be "item.YOUR_DATA"
[CustomItemRules] If the call seems correct, the data must not be available (yet?) or have a different naming, consider disabling this rule
[CustomItemRules] The available properties can be found in the "EvaluableItem.cs" in the "Classes" folder.
[CustomItemRules] To avoid any further issues, bot will stop now, please verify your file.

Will try to delete that line of code for now and see if my bot will stop again. If you have time maybe check why this is happening and how many of this exist in ur codes? ty
 
found it, JewelDualCritChance is not listed under EvaluableItem.cs, part of AIF itself.
Remove it for now, ill change it to something else in next file
 
How to ignore "Stygian Vise" in chaos receipt plug-in??? Just saw my bot put elder Stygian vise into my receipt tab...dont even know how many it did already...
 
if you do it right, it won't break anything.
evaluationitem.cs file even has a section for custom edits and additions.
scroll down to the bottom of the file.

changed this line
[Description("Total Crit Chance (jewel only)")]
public int JewelTotalCritChance => (JewelGlobalCritChance + JewelSpellCritChance + JewelElementalSkillCritChance + JewelFireSkillCritChance + JewelColdSkillCritChance + JewelLightningSkillCritChance + Jewel1HCritChance + Jewel2HCritChance + JewelMeleeCritChance);

to

[Description("Total Crit Chance (jewel only)")]
public int JewelTotalCritChance => (JewelGlobalCritChance + JewelSpellCritChance + JewelElementalSkillCritChance + JewelFireSkillCritChance + JewelColdSkillCritChance + JewelLightningSkillCritChance + Jewel1HCritChance + Jewel2HCritChance + JewelMeleeCritChance + JewelDualCritChance);

Killed AIF for me after that change...help?
 
My bot won't pick up silver coins. I added this: item.IsCurrency and item.FullName == "Silver Coin", but it still wont. any idea why?
 
Back
Top