macro calling a macro
Posted: Tue Apr 21, 2020 11:30 am
Hello everyone,
I was wondering if there is a command to call a macro in a macro ? It seems that there is few available character on one.
I'm usually in open wb, and I created macro to display useful text to lead everyone. It looks like something like that :
In this one particular no problem to fit it in one. But sometimes, text are longer and so I hit the max available character.
My idea was to split it in 2 macro like
Macro 1 :
Macro 2 :
I'm not very familiar with scripting and war api so i wanted to keep it simple for me to modify if needed.
I was wondering if there is a command to call a macro in a macro ? It seems that there is few available character on one.
I'm usually in open wb, and I created macro to display useful text to lead everyone. It looks like something like that :
Code: Select all
/say <LINK data="" text=" INC " color="255,0,0">
/wb <LINK data="" text=" INC " color="255,0,0">
My idea was to split it in 2 macro like
Macro 1 :
Code: Select all
/say <LINK data="" text=" INC " color="255,0,0">
/call "Macro2Name"
Code: Select all
/wb <LINK data="" text=" INC " color="255,0,0">