Jump to content

[AJUDA] Existe removeElementData no lado do cliente?


Recommended Posts

Boa noite, estou tendo problemas em remover um elemento do lado do cliente, estou usando: 

function button()
 
	local data = getElementData(localPlayer, "abriu")

	if (data == true ) then

		outputChatBox("Você já está com o painel aberto.")

	else

	setElementData(localPlayer, "abriu", true)
	buttonss = guiCreateButton(0.5, 0.2, 0.2, 0.05, "Olá Mundo!", true)
	showCursor(true)
end
end
addCommandHandler("button", button)

function hideCursor(button, state, absoluteX, absoluteY)


	destroyElement(buttonss)
	showCursor(false)
	outputChatBox("Olá mundo!")
	removeElementData(localPlayer, "abriu")

end
addEventHandler("onClientGUIClick", root, hideCursor)

Estava indo tão bem, até porque o setElementData está funcionando corretamente, já o amigo removeElementData não quer funcionar em client-side, alguém pode me ajudar?

Agradeço desde já a compreensão :v

Link to comment
  • Other Languages Moderators

Porquê se incomoda tanto em remover a data? Sendo que torná-la false terá o mesmo resultado.

Você não precisa se preocupar em remover element data do localPlayer, pois quando ele desconectar do servidor, vai ser apagado também.

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