Page 1 of 1

Help with macros

Posted: Sun Jul 11, 2021 10:37 am
by Ombram
Hello everyone, i just started playing two weeks ago.
As an ESO and WoW player i wanted to know if i can make a macro to change between action bars 1 and 2 in the same hotbars.

Something along:

/change actionbar1
/change actionbar2

all in the same command, or if i have to hotkey to two different keybinds.

Thanks in advance,

Re: Help with macros

Posted: Sun Jul 11, 2021 10:44 am
by sullemunk
If you go to your Keymapping window and under the tab "Hotbars", there should be a key bind for "switch to hotbar 1"...

Re: Help with macros

Posted: Sun Jul 11, 2021 10:49 am
by Omegus
Ombram wrote: Sun Jul 11, 2021 10:37 am Hello everyone, i just started playing two weeks ago.
As an ESO and WoW player i wanted to know if i can make a macro to change between action bars 1 and 2 in the same hotbars.

Something along:

/change actionbar1
/change actionbar2

all in the same command, or if i have to hotkey to two different keybinds.

Thanks in advance,
To do it from a single button, set up a macro with the text below. First parameter to Get/SetHotBarPage is the physical bar on the UI, second parameter is which "virtual" page of abilities to show.

/script if GetHotbarPage (1) == 1 then SetHotbarPage (1, 2) else SetHotbarPage (1, 1) end

Re: Help with macros

Posted: Sun Jul 11, 2021 12:06 pm
by Ombram
thanks, i'll try :)