• You've discovered RedGuides 📕 an EverQuest multi-boxing community 🛡️🧙🗡️. We want you to play several EQ characters at once, come join us and say hello! 👋
  • IS THIS SITE UGLY? Change the look. To dismiss this notice, click the X --->

healer macro (1 Viewer)

Alchropie

New member
Joined
Aug 22, 2006
RedCents
I have a 70 cleric that i box, and i am trying to find a healing bot that i can start up, basiclly like..CH at 70% or something and quick heal at 30% that heals automaticly. i searched the forums, but didnt really find anything. anyone have anything like that?
 
Rich (BB code):
|SOS barebones healer.mac
|Edited by Unity0110

#Include spell_routines.inc

#Event temp "Your #${hpbuff}# spell has worn off of #${tankname}#."


Sub Main
/declare tankname string outer ${Target}
/declare healspell string outer "Complete Heal"
/declare hpbuff string outer "Temperance"
/declare selfhealpoint int outer 50
/declare tankhealpoint int outer 50
/declare healwho string outer
/Echo Simple cleric target heal has loaded.
:Mainloop
/doevents
/if (${Me.PctMana}<=7) /call lom
/if (${Target.PctHPs}<=${tankhealpoint}) { 
/varset healwho ${tankname}
/call heal
}
/if (${Me.PctHPs}<=${selfhealpoint}) {
/varset healwho ${Me}
/call heal
}
/goto :Mainloop
/return

Sub Event_temp
/target ${tankname}
/g Im casting ${hpbuff} on <<<< ${Target} >>>>
/call cast "${hpbuff}"
/return

Sub heal
/target ${healwho}
/call Cast "Complete Heal"
/echo Casting "${healspell}"
/target ${tankname}
/return

sub lom
/tell ${tankname} im low on mana
/sit
:lomloop
/if (${Me.PctMana}>50) {
/gsay I'm at ${Me.PctMana}% mana
/return
}
/goto :lomloop
/return
/sit
:lomloop
/if (${Me.PctMana}>50) {
/return
}
/goto :lomloop
/return

this one is basic
 
basic yet i still cannot get it to work... i copied the above exactly the way it is and made a new mac in my macro folder, and named it "Healer" then i went into game and typed /mac healer and it gave me this error

Couldn't open include file c:\Documents and Settings\Ben\Desktop\MQ2-MMOBugs20070815\Macros\spell_routines.inc
Unable to add macro line.
Couldn't open include file c:\Documents and Settings\Ben\Desktop\MQ2-MMOBugs20070815\Macros\spell_routines.inc

The Current Macro has ended.
Unable to add macro line.

do i need to change anything in the macro to make it work? like the tank name or spells used? i'm not very witty when it comes to MQ heh..
 
healer macro

Users who are viewing this thread

Back
Top