Alexis Aguirre Posted July 9, 2022 Share Posted July 9, 2022 Como hago para verificar si mi Personaje esta muerto para que no pueda colocar ningun comando, como por ejemplo mi personaje murio y puedo establecer comandos con un npc como hago para que esto no suceda Script: Link to comment
_SAXI_ Posted July 9, 2022 Share Posted July 9, 2022 (edited) function hola(jugador,_) if(isPedDead(jugador))then outputChatBox("¡Estás muerto!",jugador,255,0,0) else outputChatBox("¡Estás vivo!",jugador,0,255,0) end end addCommandHandler("meme",hola) Edited July 9, 2022 by _SAXI_ Link to comment
Serene Posted July 13, 2022 Share Posted July 13, 2022 Hola. Usa está función. cancelEvent Link to comment
DaaNN Posted December 13, 2022 Share Posted December 13, 2022 Simplemente. Primero, en el evento onPedWasted puedes darle el dato al source source:setData("Muerto",true) Cuando reaparezcan el HP o cuando hagas el spawnPlayer usas un source:setData("Muerto",false) Para verificar simplemente usas un if source:getData("Muerto") == true then return outputchatBox("Estás muerto",source,255,0,0) end y listo. Link to comment
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now