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.
anyone else having problem stashing leaguestones into specific tab even with the option box checked??? what else should I do
 
Just a bit i noticed.
Ancient Reliquary Key is not covered by item.IsCurrency rules. It counts as a fragment so use item.IsFragment instead.
 
So I tried something else to solve my problem:
  • I installed EB+AIF new,
  • checked "Enable Custom Rules"
  • checked "Enable Gear Recipes"
  • changed slieder to LVL range 60-100
  • made a rule for Keep and Pickup "item.IsRecipeItem" (nothing else)

Here the code for the rule from my .json
Code:
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsRecipeItem ",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsRecipeItem ",
    "ShouldLog": false,
    "Priority": 1
  }

Result: My bot ignored EVERY rare item :(
 
Last edited:
Im trying to filter out all the rubbish divination cards.

will this code work to specify divination cards?

Code:
{
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("House of Mirrors")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Doctor")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Fiend")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Immortal")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Last One Standing")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Dragon's Heart")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Ethereal")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Offering")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("Mawr Blaidd")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Spark and the Flame")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("Abandoned Wealth")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Queen")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("Hunter's Reward")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("Wealth and Power")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Polymath")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Celestial Justicar")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("Bowyer's Dream")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Artist")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Enlightened")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Brittle Emperor")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Hunger")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("Pride Before the Fall")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The King's Heart")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Saint's Treasure")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("Last Hope")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Thaumaturgist")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Vast")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Dapper Prodigy")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Sephirot")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("Chaotic Disposition")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Hoarder")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Fletcher")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Soul")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Stormcaller")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("A Mother's Parting Gift")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("Heterochromia")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Void")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Valkyrie")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("Emperor of Purity")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("Emperor's Luck")",
    "ShouldLog": false,
    "Priority": 1
  }
{
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("House of Mirrors")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Doctor")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Fiend")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Immortal")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Last One Standing")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Dragon's Heart")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Ethereal")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Offering")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("Mawr Blaidd")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Spark and the Flame")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("Abandoned Wealth")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Queen")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("Hunter's Reward")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("Wealth and Power")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Polymath")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Celestial Justicar")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("Bowyer's Dream")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Artist")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Enlightened")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Brittle Emperor")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Hunger")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("Pride Before the Fall")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The King's Heart")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Saint's Treasure")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("Last Hope")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Thaumaturgist")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Vast")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Dapper Prodigy")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Sephirot")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("Chaotic Disposition")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Hoarder")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Fletcher")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Soul")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Stormcaller")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("A Mother's Parting Gift")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("Heterochromia")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Void")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Valkyrie")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("Emperor of Purity")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("Emperor's Luck")",
    "ShouldLog": false,
    "Priority": 1
  }
 
So I tried something else to solve my problem:
  • I installed EB+AIF new,
  • checked "Enable Custom Rules"
  • checked "Enable Gear Recipes"
  • changed slieder to LVL range 60-100
  • made a rule for Keep and Pickup "item.IsRecipeItem" (nothing else)

Here the code for the rule from my .json
Code:
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsRecipeItem ",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsRecipeItem ",
    "ShouldLog": false,
    "Priority": 1
  }

Result: My bot ignored EVERY rare item :(
Your probably forget to set specific stash tab for recipe item?
 
Your probably forget to set specific stash tab for recipe item?
Oh sry. Forgot to mention that i specified tab 4 (last tab) as my recipe tab.

Main problem atm is, that he don't pick up any rares :-/
 
Im trying to filter out all the rubbish divination cards.

will this code work to specify divination cards?

Code:
{
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("House of Mirrors")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Doctor")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Fiend")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Immortal")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Last One Standing")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Dragon's Heart")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Ethereal")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Offering")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("Mawr Blaidd")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Spark and the Flame")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("Abandoned Wealth")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Queen")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("Hunter's Reward")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("Wealth and Power")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Polymath")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Celestial Justicar")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("Bowyer's Dream")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Artist")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Enlightened")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Brittle Emperor")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Hunger")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("Pride Before the Fall")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The King's Heart")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Saint's Treasure")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("Last Hope")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Thaumaturgist")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Vast")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Dapper Prodigy")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Sephirot")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("Chaotic Disposition")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Hoarder")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Fletcher")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Soul")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Stormcaller")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("A Mother's Parting Gift")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("Heterochromia")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Void")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Valkyrie")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("Emperor of Purity")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullNameContains("Emperor's Luck")",
    "ShouldLog": false,
    "Priority": 1
  }
{
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("House of Mirrors")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Doctor")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Fiend")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Immortal")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Last One Standing")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Dragon's Heart")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Ethereal")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Offering")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("Mawr Blaidd")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Spark and the Flame")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("Abandoned Wealth")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Queen")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("Hunter's Reward")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("Wealth and Power")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Polymath")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Celestial Justicar")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("Bowyer's Dream")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Artist")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Enlightened")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Brittle Emperor")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Hunger")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("Pride Before the Fall")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The King's Heart")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Saint's Treasure")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("Last Hope")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Thaumaturgist")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Vast")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Dapper Prodigy")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Sephirot")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("Chaotic Disposition")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Hoarder")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Fletcher")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Soul")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Stormcaller")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("A Mother's Parting Gift")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("Heterochromia")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Void")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("The Valkyrie")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("Emperor of Purity")",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullNameContains("Emperor's Luck")",
    "ShouldLog": false,
    "Priority": 1
  }
instead of FullnameContains use, "Rule": "item.IsDivinationCard and item.FullName == "The Doctor"", , it works . FullnameContains doesnt work for me with operators and , or and the rest. USing it right now only for specific league stones<
 
Oh sry. Forgot to mention that i specified tab 4 (last tab) as my recipe tab.

Main problem atm is, that he don't pick up any rares :-/
{
"Comment": "",
"Enabled": true,
"Type": 0,
"Rule": "item.IsNeededForRecipe",
"ShouldLog": false,
"Priority": 2
},
correct and working
 
{
"Comment": "",
"Enabled": true,
"Type": 0,
"Rule": "item.IsNeededForRecipe",
"ShouldLog": false,
"Priority": 2
},
correct and working

Nice seems to work. I used the wrong Recipe-Rule :x

No I'll check if my bot will vendor correctly.

@Erson atm i'm using a rule for every single leaguestone. Is there any working "Pick up all" Leaguestone-Rule ?

EDIT: Vendor recipes work :)
 
Last edited:
Nice seems to work. I used the wrong Recipe-Rule :x

No I'll check if my bot will vendor correctly.

@Erson atm i'm using a rule for every single leaguestone. Is there any working "Pick up all" Leaguestone-Rule ?

EDIT: Vendor recipes work :)

{
"Comment": "",
"Enabled": true,
"Type": 0,
"Rule": "item.NameContains ("Leaguestone")",
"ShouldLog": false
},
{
"Comment": "",
"Enabled": true,
"Type": 2,
"Rule": "item.NameContains ("Leaguestone")",
"ShouldLog": false
},
 
{
"Comment": "",
"Enabled": true,
"Type": 0,
"Rule": "item.NameContains ("Leaguestone")",
"ShouldLog": false
},
{
"Comment": "",
"Enabled": true,
"Type": 2,
"Rule": "item.NameContains ("Leaguestone")",
"ShouldLog": false
},

tyvm vendettas! works like a charm! i tried it without the brackets, that was my fault :(
 
instead of FullnameContains use, "Rule": "item.IsDivinationCard and item.FullName == "The Doctor"", , it works . FullnameContains doesnt work for me with operators and , or and the rest. USing it right now only for specific league stones<

Thanks i have amended it :) it should now only picks up divination cards worth 10c+


Code:
[
{
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullName == "House of Mirrors"",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullName == "The Doctor"",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullName == "TheFiend"",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullName == "The Immortal"",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullName == "The Last One Standing"",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullName == "The Dragon's Heart"",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullName == "The Offering"",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullName == "The Ethereal"",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullName == "Mawr Blaidd"",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullName == "The Spark and the Flame"",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullName == "Abandoned Wealth"",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullName == "The Queen"",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullName == "Hunter's Reward"",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullName == "Wealth and Power"",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullName == "The Artist"",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullName == "The Polymath"",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullName == "The Celestial Justicar"",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullName == "Bowyer's Dream"",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullName == "The Enlightened"",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullName == "The Hunger"",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullName == "The Brittle Emperor"",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullName == "Pride Before the Fall"",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullName == "The King's Heart"",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullName == "The Saint's Treasure"",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 0,
    "Rule": "item.IsDivinationCard and item.FullName == "Last Hope"",
    "ShouldLog": false,
    "Priority": 1
  },
  {
"Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullName == "House of Mirrors"",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullName == "The Doctor"",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullName == "TheFiend"",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullName == "The Immortal"",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullName == "The Last One Standing"",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullName == "The Dragon's Heart"",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullName == "The Offering"",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullName == "The Ethereal"",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullName == "Mawr Blaidd"",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullName == "The Spark and the Flame"",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullName == "Abandoned Wealth"",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullName == "The Queen"",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullName == "Hunter's Reward"",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullName == "Wealth and Power"",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullName == "The Artist"",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullName == "The Polymath"",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullName == "The Celestial Justicar"",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullName == "Bowyer's Dream"",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullName == "The Enlightened"",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullName == "The Hunger"",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullName == "The Brittle Emperor"",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullName == "Pride Before the Fall"",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullName == "The King's Heart"",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullName == "The Saint's Treasure"",
    "ShouldLog": false,
    "Priority": 1
  },
  {
    "Comment": "",
    "Enabled": true,
    "Type": 2,
    "Rule": "item.IsDivinationCard and item.FullName == "Last Hope"",
    "ShouldLog": false,
    "Priority": 1
  },
  ]
 
sorcerer boots

Hello, Im wondering if you can show me the rule so that the bot will pick up white sorcerer boots.
 
Hello, Im wondering if you can show me the rule so that the bot will pick up white sorcerer boots.

I'm assuming you want to chance them for Skyforths? If so, skip the rule and go download Stashbuddy. It will automatically pick them up and chance them!
 
sorcerer boots

I tried this but I cant seem to get it to show up in the settings for some reason.
 
I tried this but I cant seem to get it to show up in the settings for some reason.

You've downloaded the newest version and extracted the folder into your 3rdparty folder and subsequently restarted the bot, right? If it's not showing up after that, post a log.
 
sorcerer boots

thanks for your help, i have done what you said above here is all the red text i have gotten. It would seem I need a 3rdparty.txt file, how do i go about doing that?


Cannot load [Classes] because there is no [3rdparty.txt] file
[CommunityLib] because there is no [3rdparty.txt] file.
Cannot load [DoNotUse_Dev_QuestBot] because there is no [3rdparty.txt] file.
Cannot load [Events] because there is no [3rdparty.txt] file.
Cannot load [Helpers] because there is no [3rdparty.txt] file.
Cannot load [Images] because there is no [3rdparty.txt] file.
Cannot load [Interfaces] because there is no [3rdparty.txt] file.
 
Do you have each plugin in its own folder, or have you placed their zip files in the 3rdparty folder? Each of those plugins comes with its own, default 3rd party file, and so does Stashbuddy.

You should have separate files for each plugin, within which you extract the contents of the zip file. Inside the zip file is where the 3rd party file is.
 
sorcerer boots

thanks for your help man I managed to get it to work, just had to make a separate folder.
 
bot not do gcp recipes. any one can help?
480dccacf4be48158a1c8e9e231d5f64.jpeg
 
Status
Not open for further replies.
Back
Top