misterman66 Posted August 2, 2016 Share Posted August 2, 2016 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! Link to comment
misterman66 Posted August 2, 2016 Author Share Posted August 2, 2016 So would I transfer the data over using that? I've messed around with it but can't figure out what to do with it. triggerClientEvent Link to comment
Captain Cody Posted August 2, 2016 Share Posted August 2, 2016 There's that or you can use setElementData Link to comment
N3xT Posted August 2, 2016 Share Posted August 2, 2016 Simple example #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) Link to comment
misterman66 Posted August 2, 2016 Author Share Posted August 2, 2016 There's that or you can use setElementData I found the setAccountData to be easier as it save automatically when logged in! @N3xt Thank you, I'll try it! Link to comment
N3xT Posted August 2, 2016 Share Posted August 2, 2016 There's that or you can use setElementData I found the setAccountData to be easier as it save automatically when logged in! @N3xt Thank you, I'll try it! You're Welcome. 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