Skip to content

Chaining Macros

Timothy Minahan edited this page Jan 10, 2023 · 9 revisions

Zeo from WLM showed me this example of using a mod control to call another macro. This example is for An Arcane Mage macro that on Alt calls a Burst Macro. This is showing the older GSE2 interface but the principle is the same.

Base Macro

Base Macro - MYARCANE

Alt Modifier(Burst Macro)

Sub Macro

How it Works

When the User presses Alt, This line in the base macro calls the other macro: /click [mod:Alt] MAGIMISSILES

Dragonflight Specifics

Depending on whether you are using KeyDown or KeyUP (see ActionButtonKeyDown vs ActionButtonKeyUp ) you will need to add LeftButton at the end of the click command for KeyDown (GSE's default) eg: /click MYMACRO LeftButton t for KeyDown where as you only need /click MYMACRO if using KeyUp

NoButton

To click an action bar button instead of LeftButton you need to use NoButton eg /click MultiActionBarButton1 NoButton This NoButton nomenclature is also required by Dragonflight for calling a GSE button from ConsolePort and BindPad.