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

[Plugin] AdvancedItemFilter RELOADED !

Status
Not open for further replies.
How do i make plugin, making chaos recipe independently from ilvl of the item ???
Because he wont take +75ilvl items for chaos orb.
 
Last edited:
Back from taking a break from the bot and starting to use it again. I see lots of changes including the community lib.

I have the AIF added through community lib, brought forward my rules from JYAM that I added to previously. However it appears that it is crashing consistently with Silver Coin issues.

View attachment Exilebuddy 8376 2016-06-12 20.01.txt

Attached is my log, I have the silver coin added to my pick up rules.

Thanks in advance!
 
Last edited:
For chancing, I am wanting to pickup Agate Amulets, I added following to Custom Rules pickup and keep but it won't pickup them?
item.IsNormal and item.FullName == "Agate Amulet"
 
For chancing, I am wanting to pickup Agate Amulets, I added following to Custom Rules pickup and keep but it won't pickup them?
item.IsNormal and item.FullName == "Agate Amulet"

You might need to add it to stash as well. Not sure if you need to for the stasher or not though.
 
The plugin keeps stashing all items. Including all yellows that i put on sell mode.

How do i fix this?
 
Last edited:
Should i disable built in filter and add rules on aif ? also i want to pick up only one rare of specific slot for chaos recipe until recipe rather than picking and selling rares is it possible?
 
I guess you use QuestBot
AIF doesn't support QuestBot(yet?)

I am. I switched to GrindBot a bit and it worked, now switched back to QuestBot and instead of stashing all crap, it is just vendoring everything, I just saw the bot vendoring a Vaults of Atziri Div card.
 
Is it possible to stash only one unit of specific slot until recipe is complete and vendored?
 
@toNyx

Is there an easy way to combine the chaos / regal recipes? They basically trade 1:1 and have for several leagues now. So i would rather allow AiF to combine both recipes together (not use them seperately while only being able to choose 1).

I changed

Code:
namespace AdvancedItemFilter.Classes
{
    public class NewRegalRecipe : IRecipe
    {
        #region Implementation of IRecipe

        public int MinLevel => 60;
        public int MaxLevel => 100;
and
Code:
namespace AdvancedItemFilter.Classes
{
    public class NewChaosRecipe : IRecipe
    {
        #region Implementation of IRecipe

        public int MinLevel => 60;
        public int MaxLevel => 100;

Would there be anything else that needs changed to make this work? Thats a lot of files to go through, so i probably missed something
 
yes that works, however, I wouldn't set maxlevel to 100... ilvl 84 bases go for a lot. you don't want to accidentally vendor those.q
 
yes that works, however, I wouldn't set maxlevel to 100... ilvl 84 bases go for a lot. you don't want to accidentally vendor those.q

My item list keeps all the good base 84+ , but that is a good suggestion for anyone else making changes like this.
 
You don't casually drop 84+ ilvls until you are doing T15 maps or T13 with strongboxes and +3 level of them
 
Yet, currently fixing ;)



Yes, use the item.IsNeededForChaosRecipe rule (pickup only)


Also how can i make dont pick up less than tier 5 maps?



And I'm getting an error while trying to save

"[Save] Error while saving the rules.System.ArgumentException: Yol geçerli bir biçimde değil.
konum: System.IO.Path.NormalizePath(String path, Boolean fullCheck, Int32 maxPathLength, Boolean expandShortPaths)
konum: System.IO.Path.GetDirectoryName(String path)
konum: AdvancedItemFilter.Classes.RulesManager.Save(String filename) C:\Users\Pein\Downloads\Archives\3rdParty\_CONFIGS_\Default\AdvancedItemFilter\Content-99450481\Classes\RulesManager.cs içinde: satır 34
"
 
Last edited:
Also how can i make dont pick up less than tier 5 maps?

Dont think there is a "tier" option and item level doesnt work well either for maps.

So you can either do something like "item.IsMap and item.Name == "Catacomb Map" or item.Name == "Temple Map"" and list off every map you want to pick up / keep.

Or do the reverse and "item.IsMap and not item.Name == "Crypt Map" or not item.Name == Phantasmagoria Map"

Etc etc. Maybe toNyx will get around to adding in a tier value, but its definitely not high priority. I also hide low maps, because i feel they waste time except at the very start of a league.
 
Dont think there is a "tier" option and item level doesnt work well either for maps.

So you can either do something like "item.IsMap and item.Name == "Catacomb Map" or item.Name == "Temple Map"" and list off every map you want to pick up / keep.

Or do the reverse and "item.IsMap and not item.Name == "Crypt Map" or not item.Name == Phantasmagoria Map"

Etc etc. Maybe toNyx will get around to adding in a tier value, but its definitely not high priority. I also hide low maps, because i feel they waste time except at the very start of a league.


Yeah they really do ,will bot still pick up if its hided in item filter of game itself?
 
Status
Not open for further replies.
Back
Top