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

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

AIF and Shaper/Elder items?

lyvewyre

Member
Joined
Jan 3, 2013
Messages
418
What are you guys doing with regard to shaper and elder items? Keeping the bases and crafting them should be quite profitable, has there been any word on whether AIF or any other method has been setup to save them?
 
Replace 3rdParty/AdvancedItemFilter/Classes/EvaluableItem.cs with the one attached, then use item.IsShaperItem or item.IsElderItem in AIF rules.

You can also change EvaluableItem.cs yourself, just add this somewhere inside the EvaluableItem class:

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

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

Attachments

Still doesnt work.

Getting the error,

[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,
 
Ok. With oldroutine, works fine. With Golem/Exile, it gives the above error.
 
Back
Top