Page 1 of 1

Softlog macro

Posted: Fri Jul 27, 2018 10:15 pm
by Gordlad
I think this macro will help with the entertainers and docs when the server crashes or is rebooted or just from simple desyncs. The only negative to this macro is that the character has to be the top most character on the list. You can achieve this by reordering them alphabetically or move your other toons to another planet and reorder them by planet.

Macro Name: SoftLog

Code: Select all

/ui action gameMenuActivate;
/pause 1;
/ui action defaultButton;
/pause 2;
/ui action defaultButton;
/pause 1800;
/macro SoftLog;
What this macro does:
/ui action gameMenuActivate; This activates the game menu where the disconnect button is located.
/pause 1; This pauses for 1 second to allow the game menu to load. You may need to adjust this to a higher number if you experience any system lag.
/ui action defaultButton; This first one activates the default keypress which for the game menu is the disconnect button. You will be taken to the character select screen.
/pause 2; This pauses for 2 seconds to allow the character select screen to load. You may need to adjust this to a higher number if you experience any system lag.
/ui action defaultButton; This second one will select the first character on the character select screen and log them back into the game. This is where it becomes important to have the character that you want logged in on the top of the list either by sorting the characters alphabetically or sorting the planets alphabetically.
/pause 1800; This pauses the macro for 20 minutes. This can be adjusted to whatever length to allow the macro to fire more often or less often.
/macro SoftLog; This will loop the macro back to the start.