Med to full, then camp
Posted: Sat May 13, 2006 5:34 am
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.
EDIT: I was just told SoE added that camped toons, after a certain time, have health/mana/stamina restored automaticaly. Oh well, do with this as you wish.
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.
Code: Select all
| 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
EDIT: I was just told SoE added that camped toons, after a certain time, have health/mana/stamina restored automaticaly. Oh well, do with this as you wish.