September 15, 20196 yr I'm trying to find this condition in FC Editor but cannot find anything similar. Anyone know how to check if target has mana?
September 16, 20196 yr Hey for C# you can use a Mana check like this ObjectManager.Target.ManaPercentage > 0 or if you wish to use Lua if UnitMana('player')/UnitManaMax('Player') < # then return true end # = number from 1 - 100, whatever % you wish to use.
September 20, 20196 yr Author On 9/16/2019 at 6:33 PM, AlexTheCarMan said: Hey for C# you can use a Mana check like this ObjectManager.Target.ManaPercentage > 0 or if you wish to use Lua if UnitMana('player')/UnitManaMax('Player') < # then return true end # = number from 1 - 100, whatever % you wish to use. Thank you!
Create an account or sign in to comment