Quoted from "Ninjacalypse;10203"
RoM Devs broke macros with the latest Downdate so macros will now get cut off past 2 or 3 lines. If you change existing macros, they'll automatically break. New macros can't go past 2 or 3 lines.
Quoted from "TheGooch;354013"
Here's a new one. I noticed this setting doesn't get saved and I don't like those class icons over everyone's heads. You can disable them with this macro:
If you include it with your other favorite macros (for window positions) then it's just one click of a macro to set up a bunch of stuff each time you log in. Unfortunately the 1793 patch still doesn't save all these settings, so we're using macro's to set a bunch in one shot.
![]()
Source code
1 /script GC_SetTitleIconVisible(false);


Quoted
Show/Hide Other Player's Names:
/script GC_SetPlayerTitleVisible(true);
/script GC_SetPlayerTitleVisible(false);
Show/Hide Self Name:
/script GC_SetSelfTitleVisible(true);
/script GC_SetSelfTitleVisible(false);
I then have several macros on my characters to finalize some details in the UI and other toggling things, each of these are separate macros that I press after manually copying and pasting in the above quoted script lines:
Quoted
/script ScrollBannerFrame:ClearAllAnchors(); ScrollBannerFrameetAnchor("TOPLEFT", "TOPLEFT", WorldFrame, 375, 5);
/script CastingBarFrame:ClearAllAnchors(); CastingBarFrameetAnchor("BOTTOM", "BOTTOM", WorldFrame, 15, -8
;
/script MinimapFrame:ClearAllAnchors(); MinimapFrameetAnchor("TOPRIGHT", "TOPRIGHT", WorldFrame, -8, 2
;
/script TargetFrame:ClearAllAnchors(); TargetFrameetAnchor("BOTTOM", "BOTTOM", WorldFrame, 180, -167);
/script PlayerFrame:ClearAllAnchors(); PlayerFrameetAnchor("BOTTOM", "BOTTOM", WorldFrame, -55, -110);
These are other macros I use often:
Quoted
/script CastingBarFrameetScale(1.5);
/script MinimapFrameetScale(1.075);
Quoted
/script GC_SetTitleIconVisible(true);
/script GC_SetTitleIconVisible(false);
/script TargetUnit("player");
/script UseBagItem(120);

Quoted from "shoestring;13551"
In the same vine...How can I stop or move the Error Text in the middle of the screen?
|
|
Source code |
1 |
/script ScrollBannerFrame:ClearAllAnchors(); ScrollBannerFrame:SetAnchor("TOPLEFT", "TOPLEFT", WorldFrame, 375, 5);
|
|
|
Source code |
1 2 |
/script ScrollBannerFrame:ClearAllAnchors(); ScrollBannerFrame:SetAnchor("TOPLEFT", "TOPLEFT", WorldFrame, 375, 5);
/script CastingBarFrame:ClearAllAnchors(); CastingBarFrame:SetAnchor("BOTTOM", "BOTTOM", WorldFrame, 15, -88)
|
|
|
Source code |
1 2 |
/script MinimapFrame:ClearAllAnchors(); MinimapFrame:SetAnchor("TOPRIGHT", "TOPRIGHT", WorldFrame, -8, 28);
/script TargetFrame:ClearAllAnchors(); TargetFrame:SetAnchor("BOTTOM", "BOTTOM", WorldFrame, 180, -167)
|
|
|
Source code |
1 2 3 |
/script PlayerFrame:ClearAllAnchors(); PlayerFrame:SetAnchor("BOTTOM", "BOTTOM", WorldFrame, -55, -110);
/script CastingBarFrame:SetScale(1.5);
/script MinimapFrame:SetScale(1.075);
|
|
|
Source code |
1 |
/script if (ACTIONBUTTON_LOCKED==true) then ACTIONBUTTON_LOCKED=false; else ACTIONBUTTON_LOCKED=true; end |
|
|
Source code |
1 |
/script GC_SetTitleIconVisible(true); |
|
|
Source code |
1 |
/script GC_SetTitleTitleIconVisible(false); |
|
|
Source code |
1 |
/script GC_SetPlayerTitleVisible(true); |
|
|
Source code |
1 |
/script GC_SetPlayerTitleVisible(false); |
|
|
Source code |
1 |
/script GC_SetSelfTitleVisible(true); |
|
|
Source code |
1 |
/script GC_SetSelfTitleVisible(false); |
|
|
Source code |
1 |
/script TargetUnit("player");
|
|
|
Source code |
1 |
/script UseBagItem(120); |
|
|
Source code |
1 |
/script UseBagItem(119); UseBagItem(120); |
From my skimming through many threads and posts here and on the EU forums, I'd have to say that there isn't. This was asked also on the EU forums somewhere in the UI Addon forum section.
Quoted from "Xagest;14381"
Is there a way to macro resource collection? I hate having to switch to my mouse to right click the mining vein or plants that's right in front of me.