Regen to FM/FH, then Camp to Desktop

A forum for you to dump all the macros you create, allowing users to use, modify, and comment on your work.

Moderator: MacroQuest Developers

User avatar
a_troll_01
a lesser mummy
a lesser mummy
Posts: 46
Joined: Sat Dec 06, 2003 6:06 am
Location: Memphis, TN
Contact:

Regen to FM/FH, then Camp to Desktop

Post by a_troll_01 » Wed Apr 28, 2004 4:26 am

Personally, I won't camp unless FM/FH. Saves me some time after logging in. This snippet allows you to just AFK while getting full mana & health, and then shuts down EQ automatically. More of a tool than a macro, just thought someone else might find it as handy as I do.

Code: Select all


|-- Med to Full Mana & Health then Camp to Desktop --
|----------------------------------------------------
|-- Just sit down and run the macro to med to full
|-- health/mana before camping to desktop

Sub Main 
   :MedLoop
   /if (${Me.PctHPs}>=100) {
      /if (${Me.PctMana}>=100) /goto :Camp
      }
   /delay 10s
   /goto :MedLoop

   :Camp
   /camp desktop
/endmacro
-- a_troll_01

eluminate
orc pawn
orc pawn
Posts: 16
Joined: Wed Apr 28, 2004 4:20 am

Post by eluminate » Wed Apr 28, 2004 5:29 am

brilliant

Oid
a snow griffon
a snow griffon
Posts: 416
Joined: Thu Oct 17, 2002 3:26 am
Contact:

Post by Oid » Wed Apr 28, 2004 10:34 am

Code: Select all

/timed 6000 /camp desktop
Smokey the Lax says only you can prevent reproduction.

Micro
a lesser mummy
a lesser mummy
Posts: 40
Joined: Fri Mar 12, 2004 5:56 pm

Post by Micro » Wed Apr 28, 2004 11:05 am

Just a few minor suggestions:

Code: Select all

Sub Main 
   :MedLoop 
   /if (${Me.PctHPs}>=100 && ${Me.PctMana}>=100 && !${Me.Buff[Resurection Effects]})  /goto :Camp 
   /delay 10s 
   /goto :MedLoop 

   :Camp 
   /camp desktop 
/endmacro