Jump to content

Recommended Posts

Spells like Mangle(Cat), Faerie fire(feral) (also i heard of other spells with parenthesis  in it's name) isn't usable in TBC in usual way, so we forced to run it as macros or lua. Its not a big deal at all, but when it comes to make fightclasses, you can't use, for example, Mangle.KnownSpell and has to divide druid feral fc in pre-mangle fc and post-mangle fc, which is not very convenient. Droidz, if you can, please fix this issue.

Link to comment
https://wrobot.eu/forums/topic/10340-using-manglefaerie-fireferal-in-tbc/
Share on other sites

You can enter "Faerie Fire(Feral)()" as the name and it should work. I personally always substitute SpellManager.KnowSpell with an extension function in C#.
 

public static bool IsKnown(this Spell spell)
{
  return Lua.LuaDoString<bool>($"return GetSpellInfo('{spell.Name')");
}

 

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...