Jump to content

Recommended Posts

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

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
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

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
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...