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

Bind Wound (1 Viewer)

eparnell20

New member
Joined
Apr 14, 2011
RedCents
Does anyone have a macro for Bind Wound or could create one easily? I guess it could be a /doability 4 or something like that that repeats itself. I think there is a 10 sec cooldown.

I would just like to be able to take some damage and run the macro for tem minutes or so while I do work, rinse and repeat.
 
Well friend if u were in a place taking sustained damage so you would be able to bind wound lets say while you slept you can google a small app named Autofire. I would suggest google Autofire for Everquest or you could visit this link http://www.axiomfiles.com/Files/206882/autofire.htm
The program does nothing to Everquest itself. It is designed to press a keyboard key over and over and you just have to set the input key to start the spamming and set the output key accordingly. I use F8 to start it an it spams F7. It works wonders for leveling spell casting skills. I hope this helps friend. It is a very old program but a goodie.
 
See if this does what you want...

Rich (BB code):
|**
BindSkill.mac
by: hoosierbilly
**|

Sub Main
:loop
/if (${FindItem[bandage].ID} && ${Me.PctHPs}<95 && ${Me.AbilityReady[Bind Wound]}) /doability "Bind Wound"
/if (!${FindItem[bandage].ID}) {
	/echo You must get more bandages...
	/end
	}
/delay 10s
/goto :loop
/end
 
This will also self damage and bind as long as you have bandages.

Rich (BB code):
|---------------------------------------------------------- 
|hitandbind.mac 
|Simple practice macro to raise Bind Wound skill 
| 
|Usage: /mac hitandbind
| 
|Effect: Casts DD on self to 20% then binds wounds to max, 
|rinse and repeat.  Uses spellcast.inc for simplicity/uniformity 
| 
|By Dragonfire 
|Date: 05/11/2007
|---------------------------------------------------------- 

#include Spell_Routines.inc

#event max 	"You cannot bandage your target past 70#*#"
#event out	"You can't bandage without bandages,#*#"

|------------------------------------------------------------|
|               EXAMPLE
|------------------------------------------------------------|
|#event invis "Your Invisibility spell has worn off of #1#."
|------------------------------------------------------------|


Sub Main
	/echo Hit and Bind started.
	/declare Maxxed bool outer


:loop
	/if (${Me.Standing} && !${Me.Mount.ID}) /sit
	/call MedBreak
	/IF (${Target.ID} == NULL) /target ${Me} 
	/varset Maxxed False

:hitloop
	/if (${Me.PctHPs}<20) {
		/goto :bindwound
	}
	/call cast "Summer's Dew Rk. II" gem3 4s
	/goto :hitloop

:bindwound
	/keypress hot2_6
	/delay 10s
	/doevents
	/if (${Maxxed}) {
		/goto :loop
		}
	/goto :bindwound

/return	

sub MedBreak
    /Echo Med Break!!!!
   :Medup 
  /if (!${Me.Sitting}) /sit 

:KeepMedding

  /if (${Me.CurrentMana} < ${Me.MaxMana}) {
    /delay 5s
    /goto :KeepMedding
    }

/return

|------------------------------------------------------|
|               EXAMPLE
|------------------------------------------------------|
|Sub Event_invis(string, playername)
|	/echo ${playername} has lost invisibility
|	/target ${playername}
|	/delay 1s
|	/call cast "Invisibility" gem8 4s
|/return
|------------------------------------------------------|


Sub Event_max(string)
	/echo I am HEALED!.
	/varset Maxxed True
/return

Sub Event_out
	/Echo Oops! Need bandages.  Where is that Mage?
	/endmacro
/return
 
If you don't have all TBM progression done you can sit in Crypt of Sul. That zone will take your health down to 70%. I sat behind the fake wall all the in the north. There are no mobs there. I just used a macro like these and did bind wound until it was max.
 
If you don't have all TBM progression done you can sit in Crypt of Sul. That zone will take your health down to 70%. I sat behind the fake wall all the in the north. There are no mobs there. I just used a macro like these and did bind wound until it was max.

This is an awesome mini-eq hack... well done.
 
Bind Wound

Users who are viewing this thread

Back
Top