Nevermind the ten year necro; the necroing post is wrong.
You cannot write a macro to activate two oGCD actions with 0.5s between them. You cannot wait fractional seconds in a macro. You can verify that fractional waits get rounded to the nearest whole number of seconds using this macro:
This macro starts a 6 second countdown and tries to wait 5.5 or 6.4 seconds before playing a sound effect. The countdowns will end at the same time that the sound effects trigger, 6.0s later, despite the attempts to wait 5.5 or 6.4 seconds.Code:/mlock /cd 6 /wait 5.5 /e <se.9> /wait 3 /cd 6 /wait 6.4 /e <se.9> <wait.3> /cd 6 <wait.5.5> /e <se.9> <wait.3> /cd 6 <wait.6.4> /e <se.9>