Med to full then camp?
Posted: Mon May 24, 2004 1:22 am
Anyone have an updated macro to Med to full mana and health then camp to the desktop?
Thanks!
OnyxSkyDV
Thanks!
OnyxSkyDV
Need to talk about MacroQuest to other MacroQuest users?
https://mq64.org/phpBB3/
Code: Select all
#event camp "[MQ2] Camping."
sub event_camp(string Line)
/echo Ending Macro once I am full health and mana.
:Loop
/if (${Me.PctHPs}==100 && ${Me.PctMana}==100) {
/camp desktop
/end
} else {
/goto :Loop
}
/returnCode: Select all
Sub Main
/delay 60m ${Me.PctMana}>99
/delay 60m ${Me.PctHPs}>99
/camp desktop
/return
Code: Select all
Sub Main
/delay 60m (${Me.PctMana}>99&&${Me.PctHPs}>99)
/camp desktop
/returnCode: Select all
Sub Main
/multiline ; /delay 60m (${Me.PctMana}>99&&${Me.PctHPs}>99) ; /camp desktop
/return
Code: Select all
Sub Main
/multiline ; /delay 60m (${Me.PctMana}>99&&${Me.PctHPs}>99) ; /camp desktop ; /returnCode: Select all
Sub Main
/multiline ; /delay 60m (${Me.PctMana}>99&&${Me.PctHPs}>99&&!${Me.Buff[Resurection Effects]})) ; /camp desktop ; /return