Jump to content

Macros para ocultar/mostrar yelmo y capa con un click


Recommended Posts

Posted

Es una macro de conocimiento público, pero veo que nadie lo ha compartido así que lo dejo acá para que no sea difícil de encontrar.

 

Mostrar/Ocultar casco con un click

/run if(ShowingHelm()) then ShowHelm(false) else ShowHelm(true) end

 

Mostrar/ocultar capa con un click

/run if(ShowingCloak()) then ShowCloak(false) else ShowCloak(true) end

 

Posted

Para solamente mostrar con un click (en caso de estar escondido)

/run if(not ShowingHelm()) then ShowingHelm(true) end
/run if(not ShowingCloak()) then ShowCloak(true) end

 

Para solamente esconder con un click (en caso de mostrarse previamente)

/run if(ShowingHelm()) then ShowingHelm(false) end
/run if(ShowingCloak()) then ShowCloak(false) end

 

Esta linea sirve mucho si tienes una macro asociada a un set y quieres mostrar o esconder alguno de estos

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.