Jump to content

How to getAccountData on Client Side?


Recommended Posts

Posted

How would I get/setAccountData on Client side? I've used getAccountData to get the info I want, but how would I get it on Clientside for my gui? Because setAccountData is a Server function only!

Any help would be great, thanks!

Posted

Simple example :P

#Server

local data = getAccountData(...) -- get the data 
triggerClientEvent(source,"accountData",source,data) -- send it to clientside 
  

#Client

addEvent(...) -- event 
addEventHandler("accountData",root, -- event 
function (data) -- recepion the data from serverside 
    outputChatBox(data) -- output the data 
end) 
Posted
There's that or you can use setElementData

I found the setAccountData to be easier as it save automatically when logged in! :D

@N3xt Thank you, I'll try it!

You're Welcome.

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