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

macro help (1 Viewer)

VillageIdiot

Member
Joined
Dec 14, 2006
RedCents
291¢
I am very new at making macro's. Why does this not continue to go? I start it and it just ends.

Rich (BB code):
#include spell_routines.inc

#event spells "tells you, 'ENTER TEXT HERE?'"
#event invite "tells you, 'ENTER TEXT HERE!'"
#event ten "tells you, 'ENTER TEXT HERE'"
#event temp "tells you, 'ENTER TEXT HERE'"
#event virt "tells you, 'ENTER TEXT HERE'"
#event divine "tells you, 'ENTER TEXT HERE'"
#event soe "tells you, 'ENTER TEXT HERE'"


Sub Main

:mainloop
/doevents
/delay 5
/goto :mainloop
/return



Sub spells
/mem buffage
/return

Sub invite
/acceptinvite
/return

Sub ten
/cast 1
/return

sub temp
/cast 3
/return

sub virt
/cast 2
/return

sub divine
/cast 4
/return

sub soe
/cast 5
/return
 
Couple things here. In your events you need the #*# at the beginning of the phrases so it ignores who is saying it. (could also add the toons name if only one toon were to ever issue commands). Your Subs need the Sub Event_ten to let the macro now this is the sub for that event. Yes chuck that /return the line before it /goto :mainloop makes it so that return will never be read (but it wont hurt anything being there, it is just sloppy).

try it like this: (change the trigger phrases to whatever you like)

Rich (BB code):
#Event spells "#*#tells you, 'spells'"
#Event invite "#*#tells you, 'invite'"
#Event ten "#*#tells you, 'ten'"
#Event temp "#*#tells you, 'temp'"
#Event virt "#*#tells you, 'virt'"
#Event divine "#*#tells you, 'divine'"
#Event soe "#*#tells you, 'soe'"


Sub Main

:mainloop
/doevents
/delay 5
/goto :mainloop




Sub Event_spells
/mem buffage
/return

Sub Event_invite
/acceptinvite
/return

Sub Event_ten
/cast 1
/return

Sub Event_temp
/cast 3
/return

Sub Event_virt
/cast 2
/return

Sub Event_divine
/cast 4
/return

Sub Event_soe
/cast 5
/return
 
macro help

Users who are viewing this thread

Back
Top