Dufran seria algo como esto, solo es un ejemplo no se si te ayude, pero yo creo qe si, tu y yo nos entendemos e-e
function refresh(thePlayer)
local account = getPlayerAccount(thePlayer)
if not (isGuestAccount(account)) then
local EXP = tonumber(getAccountData(account,"exp"))
setElementData(thePlayer,"exp",EXP)
else
setElementData(thePlayer,"exp","none")
end
end
function refresh2()
refresh(thePlayer)
end
addEventHandler("onPlayerLogout",getRootElement(),refresh2)
addEventHandler("onPlayerLogin",getRootElement(),refresh2)
addEventHandler("onPlayerWasted",getRootElement(),refresh2)