Este sitio hace uso intenso de JavaScript.
Por favor %s en tu navegador.
Comercial
RPP
12.0.5
RPP
12.0.1
Beta
Stop macro if specific trinket isn't equiped?
Escribir respuesta
Regresar al índice de los foros
Publicado por
Crimor
Orb of Deception just dropped for me earlier and trying to make a macro for it like this:
/use Orb of Deception
/say I'm a little dwarf, short and proud, here is my arrow, here is my stout!
How would I make it able to not say the say part if the orb is not equiped/on cooldown?
Publicado por
142956
This post was from a user who has deleted their account.
Publicado por
MeanMachine
My humble opinion is that this will not work, because buffs have to be sent by the server first, and while the client triggers the cast event immediately for instant cast spells, it's impossible for buff information to be updated during the same function call, no matter how fast your connection is (technically it might work if the server sends the packet in exactly 0 time, but in reality that can't happen).
Instead, you have to check for the cast event, and because macros have very limited space you can't make it long enough (besides it requires creating a global frame afaik). Without concerning yourself too much for this simple macro, get
Aftercast
. Then, your macro becomes:
/use Orb of Deception
/aftercast /s I'm a little dwarf, short and proud, here is my arrow, here is my stout!
Escribir respuesta
No has iniciado sesión. Por favor
inicia sesión
para escribir una respuesta o
crea una cuenta
si aún no tienes una.