Calculador Posted June 9, 2017 Share Posted June 9, 2017 Buenas a todos, Bueno, lo que sucede es que al hacer una función export tipo "server", me devuelve un valor nulo. Lo que quiero que me devuelva es un booleano. Lo extraño es que no me tira error, sólo me devuelve un valor nulo y en la función export tipo "client" que hace lo mismo si me funciona. Aclaro lo que estoy haciendo con el código. Si alguien sabe lo que sucede, agradecería una solución. Desde ya muchas gracias. --client -- (Esta es la función que si funciona) function DetectarEstadoHud () if detecValorH == true then return true end if detecValorH == false then return false end end addEvent("DetectarEstadoHudHopetizenss", true) addEventHandler("DetectarEstadoHudHopetizenss", getRootElement(), DetectarEstadoHud) -- server -- (Esta es la que me tira valor nulo) function DetectarEstadoHud (player) if isElement(player) then triggerClientEvent(player, "DetectarEstadoHudHopetizenss", player) end end Link to comment
alex17" Posted June 9, 2017 Share Posted June 9, 2017 prueba de esta manera function DetectarEstadoHud () if detecValorH then return true else return false end end addEvent("DetectarEstadoHudHopetizenss", true) addEventHandler("DetectarEstadoHudHopetizenss", getRootElement(), DetectarEstadoHud) Link to comment
Calculador Posted June 9, 2017 Author Share Posted June 9, 2017 4 hours ago, alex17" said: prueba de esta manera function DetectarEstadoHud () if detecValorH then return true else return false end end addEvent("DetectarEstadoHudHopetizenss", true) addEventHandler("DetectarEstadoHudHopetizenss", getRootElement(), DetectarEstadoHud) Ya había probado así y no, ocurre lo mismo tira valor nulo. Link to comment
alex17" Posted June 9, 2017 Share Posted June 9, 2017 pues yo acabo de probarlo y me anda normal Link to comment
Calculador Posted June 9, 2017 Author Share Posted June 9, 2017 38 minutes ago, alex17" said: pues yo acabo de probarlo y me anda normal Dejame ver el codigo donde utilizas la función para que te devuelva el valor y miro si es error mío. 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