Jump to content

Use of talents failed


Pasterke

Recommended Posts

If you have spells added to your spellbook via talents, the bot don't use it and if you debug he says spellname = failed.

 

For mages : don't recognize Nether Tempest

 

For Druids : don't recognize Faerie Swarm.

Link to comment
Share on other sites

There's is no base spellname for Nether Tempest. You only get that skill if you choose that specific talent.

 

If you have Faerie Swarm and you cast Faerie Fire, then he casts Faerie Swarm. The only thing then, when he look for the debuff, it's Faerie Swarm and not Faerie Fire.

 

I made a solution for that one ;

 new SpellState("Faerie Fire", 23, context => 
           !MeFeralSettings.CurrentSetting.HaveFaerieSwarm
           && !(ObjectManager.Me.Guid == ObjectManager.Target.BuffCastedBy("Faerie Fire")),
           false, true, false, false, true, true, 0, false, false, false, false),
 new SpellState("Faerie Fire", 22, context => 
           MeFeralSettings.CurrentSetting.HaveFaerieSwarm
           && !(ObjectManager.Me.Guid == ObjectManager.Target.BuffCastedBy("Faerie Swarm")),
           false, true, false, false, true, true, 0, false, false, false, false),

[Setting]
    [DefaultValue(false)]
    [Category("Druid Feral")]
    [DisplayName("Faerie Swarm Talent")]
    [Description("Put on true if you have that Talent")]
    public bool HaveFaerieSwarm { get; set; }
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...