Quote Originally Posted by Kris1234 View Post
is it possible to tell from a macro what mana you have left?

If it is, I would like to be able to do something like this:

if MANA < 5
/cast shoot
else
dps the shit out of something
end if


also what does the NULL do at the end of some macros?

Macros and addons cannot make decisions for you, so no.

Null is a non-existant spell. It is used to force a macro to lock up. The same can be done with Nil, Frank, Supercalifragilisticexpialidocious. Since there is no spell by that name, the macro can progress no further. It is used when you only want to cast a spell or sequence once, such as Hunter's Mark or Curse of Elements, and is usually in a macro with a reset conditional.