• 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 --->

Anyone feel like modding a small mac? (1 Viewer)

nyghteyes

What is a macro??
Joined
Mar 21, 2006
RedCents
1,437¢
I use a simple heal mac on my clr and love it but was waondering if anyone could mod it to simply HoTand CH. Any healp would be much appreciated.

HTML:
|----------------------------------------------------------
|Healbot.mac
|Simple Healer Macro to watch the health of a single target
|
|Usage: /mac Healbot <Percent> <Healspell>
|
|Effect: watch target health and cast specified spell at
|specified health. This is just like Healwatch.mac but uses
|spellcast.inc for simplicity/uniformity
|
|By Fantum409
|Date: 05/01/2004
|----------------------------------------------------------

#include spellcast.inc

Sub Main
   /declare HealSpell outer
   /declare HealPct outer
 
     /if (!${Defined[Param0]} || !${Defined[Param1]}) {         
      /echo Usage: /mac healbot Percent Healspell
      /echo Example: /mac healbot 45 Complete Healing
      /end
   }

   /if (${Defined[Param0]}) {
      /varset HealPct ${Param0}
    }
   /if (${Defined[Param1]}) {
      /varset HealSpell "${Param1}"
     }
   /if (${Defined[Param2]}) {
      /varset HealSpell "${Param1} ${Param2}"
      }
  /if (${Defined[Param3]}) {
      /varset HealSpell "${Param1} ${Param2} ${Param3}"
       }
   /if (${Defined[Param4]}) {
     /varset HealSpell "${Param1} ${Param2} ${Param3} ${Param4}"
        }
 
   /echo Healbot active:
   /echo Casting ${HealSpell} on your Target at ${HealPct}% Health
   
      :HealWatchLoop
      /delay 1
      /if (${Target.ID} && ${Target.Type.NotEqual[NPC]} && ${Me.SpellReady[${HealSpell}]} && ${Target.PctHPs}<=${HealPct}) {
          /call cast "${HealSpell}" gem1
      }
      /goto :HealWatchLoop
/return
 
Last edited:
Anyone feel like modding a small mac?

Users who are viewing this thread

Back
Top