I realize most people here probably could come up with this on their own, but I thought I'd share anyhow.
I hate putting away toons for the night without full mana so I threw this together and use it all the time. This macro simply waits until you are full mana then camp you all the way out of EQ.
Simple, but handy.
I hate putting away toons for the night without full mana so I threw this together and use it all the time. This macro simply waits until you are full mana then camp you all the way out of EQ.
Rich (BB code):
| medlog.mac
| This macro waits until you are full mana then quits EQ
Sub Main
/if (${Me.State.NotEqual["SIT"]}) {
/echo You need to be sitting for this macro to work.
/return
}
/echo medlog.mac started.
/echo Medding to full mana then camping to desktop.
:loop
/delay 1s
/if (${Me.PctMana}!=100) /goto :loop
/camp desk
/return



