Macro Creation Help

killerbeatty2

New member
Joined
Jul 3, 2017
Messages
17
Reaction score
0
Points
1
So, I read through this 2 times, and I'm still not quite sure where to start.
Getting Started - Macro Creation - MMOBugs Wiki

Looking to make a Hot Key to trigger a macro. Macro would then tell my various characters ( I run 9 ) to trigger certain spells/AAs. Have 2 computers I play on so using the bcc server is fine with me.

Mages :
Frenzied Burnout
Swarms

Ranger:
Bullseye Disc

I know I can do this with a hotkey and /bct CharName //etc etc

Trying to do this into 1 key though, and I'd be shocked if it's not possible. I'm just missing the simplistic understanding of this, I think. Anyone able to give me a idiots version of a basic macro?

Thanks
 
It sounds like you are making a "burn" command.

Code:
Sub Main

:MainLoop
    /doevents
    /delay 1
/goto :MainLoop
/return

#event Burn "#*#Burn#*#"

Sub Event_Burn
    /if (${Me.Class.Name.Equal[Magician]}) {
        /cast "Frenzied Burnout"
        /cast "Swarms"
    }
    /if (${Me.Class.Name.Equal[Ranger]}) {
        /disc Bullseye Disc
    }
/return

All this does is wait around until it finds "burn" in one of the chat channels and then executes Event_Burn which casts the spells based on your class.

This is very very basic and in general its not a good design for a macro but is fairly easy to understand.

Each character would run this macro and your main would type /bc burn to have them fire up the spells.
 
Last edited:
That is exactly what I was looking for, I was just trying to word it technically without sounding like an idiot. Thank you so much.