MMOMinion

Full Version: check MP
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
how can I check my MP pool? I noticed after dying my mod spams a cast that can't be cast because MP pool has to be built first... I can check how much mp the action needs with action.cost, but how can I check if I actually have enough MP? Would be another spam-stopper ;)
Code:
-- the 'd' command is a global command for printing out information into the console
local mptable = Player.mp
d(mptable.current) -- current MP
d(mptable.max) -- max MP
d(mptable.percent) -- MP percent

https://github.com/MMOMinion/FFXIVMinion/wiki/Entity
thanks... makes sense that it isn't with the Player documentation, since other entities also can have MP ;)