• You've discovered RedGuides, an EverQuest multi-boxing and scripting community 🧙‍♀️⚙️. We want you to play several EQ characters at once, come join us and say hello! 👋

  • A TLP without truebox has thawed (Very Vanilla ready)
    Frostreaver

MACRO Subs / events ETC

Status
Not open for further replies.

armysoldier

Well-known member
Joined
Jun 26, 2005
RedCents
101¢
I would like to create a thread that has commonly or not so commonly used Subs and events

This will do a few things..

it will help noobs add to or create macros

it will make a common place to come get pieces of macros

it will help standardize macros (as much as you can do that)


use this thread for more customization of your macros


8-)


THIS CAN ALL BE FOUND IN EXISTING MACROS
Some minor modifications may have been made
Text between ** is remarks to help you .. REMOVE all of them or put a | infront of it
 
Zoned

add this to your macro .. so that if you die / or instanced ends..

you camp to desktop



Rich (BB code):
#Event Zoned "#*#You have entered#*#"

Rich (BB code):
 sub event_zoned  
 /twist off  ** if not a bard - remove this line **
 /circle off  ** if not using the moveutils /circle command  - remove this line **
 /delay 5s  
 /sit  
 /camp desk  
 /endmac 
 /return
 
Last edited:
GM detection

GM detection .. better to take a death than get caught 8-)

Rich (BB code):
/call GMcheck  ** This needs to be in your Sub Main section **

Rich (BB code):
Sub GMcheck  
 /if (${Spawn[gm].ID}) {  
 /echo Gm detected  
 /beep 
 /beep 
 /beep  
 /keypress 9 ** this was Fade that bards have - you can edit this to anything that would help you lose agro**
 /endmac 
 /unload 
 /q
}
/return
 
Last edited:
Succor

succor sub routine .. this is used in FH mac .. but should be useful for other macs too

Rich (BB code):
/if (${Me.PctHPs}<=30) /call succor  ** this line goes in Sub Main or where ever your loop is

Rich (BB code):
Sub succor

	/warp loc 0 0 0  ** you can have this do succor or warp to a off world loc so you can med / regen 
	/circle off  ** if you are not using moveutils /circle command - remove**
	/twist X X  ** put your regen and invis song here - if not bard change to /cast X (heal)**
	/delay 60
	:loopheal
	/if (${Me.PctHPs}>80) {
	/face heading 270 ** from FH mac**
	/warp loc X X X ** Put start loc in here **
	/circle on 21
	/keypress forward hold
	/twist X X X ** Edit with your original twist or remove **
 
Last edited:
*cough* code tags *cough*

But yeah, it's a good idea :) (not that my opinion matters)
 
cast a spell on a mob at a certain % health

Rich (BB code):
:CAST_DS
 /delay 1
 /if (${Target.PctHPs} > 80) /goto :CAST_DS
 /cast 7
 /delay 10s
 
This is a great idea! I am still perfecting my knowledge of the macros and plugins I feel i need to use right now. But I read through the mac code of each mac to help me understand. I was just thinking I needed a mac that would cast when my target is a %HP for my wiz just before I got to that addition.

Won't be long and I hope to contribute to. Although you will prob all have done it all by then :). Off to disect and learn Trade Skills macs.
 
Greetings,
Yes, it's me again and I am dredging up this thread to find out if it has been superseded by a better, more up-to-date and completer thread with the same idealistic goals?
Respectfully,
Toejam ))
 
Different people have added things like this to their own thread, but as far as I know it's all strewn about and not compressed into one thread.
 
Greetinghs,
Too bad cause this is just a dandy idea. I'm so lame I can't even figure out how folks add code to their messages in those little code blocks. hahaha
Thanx for the heads up. I'll just keep wearing out eyeglasses reading everybodys' stuff. ))
Toejam
 
MACRO Subs / events ETC
Status
Not open for further replies.

Users who are viewing this thread

Back
Top
Cart