public static bool IsSpellReady(this Spells spell) { return(SpellHandler.GetCooldown(spell) <= 0f); }
public static bool IsSpellReady(this Spells spell, Orbwalking.OrbwalkingMode Mode) { return(SpellHandler.GetCooldown(spell) <= 0f && GetMenuValue <bool>(string.Format("dz191.jayce.{0}.{1}", Mode.ToString().ToLower(), spell.ToString().ToLower()))); }