ايهاب Posted April 6, 2021 Posted April 6, 2021 (edited) hey all this not my code work but when i do shut down\ and iem running my sever money= 0 can help me function playerQuit() local playerAcc = getPlayerAccount(source) if ( playerAcc ) then -- You we're checking if (playeraccount == true) then, but your variable name is "playeracc". local playerCash = getPlayerMoney(source) setAccountData(playerAcc, "cash", playerCash) setPlayerMoney(source, 0) end end addEventHandler("onPlayerQuit", getRootElement(), playerQuit) addEventHandler("onPlayerLogout", getRootElement(), playerQuit) function playerLogin() local playerAcc = getPlayerAccount(source) if (playerAcc) then local playerBank = getAccountData(playerAcc, "cash") if (playerBank) then setPlayerMoney(source, tonumber(playerBank)) else outputChatBox("You are broke.", source, 255, 0, 0) end end end addEventHandler("onPlayerLogin", getRootElement(), playerLogin) Edited April 6, 2021 by ايهاب
Erlkonig Posted April 6, 2021 Posted April 6, 2021 (edited) Is it works when the player leaving the server before restart / shutdown? Did you check the value in database when the player has leaved the server? Edited April 6, 2021 by Erlkonig 1
ايهاب Posted April 6, 2021 Author Posted April 6, 2021 (edited) 1 hour ago, Erlkonig said: Is it works when the player leaving the server before restart / shutdown? Did you check the value in database when the player has leaved the server? restart and shutdown= money 0 I cannot edit, I am not a programmer Is there anything that saves that? mood Edited April 6, 2021 by ايهاب
Moderators IIYAMA Posted April 6, 2021 Moderators Posted April 6, 2021 4 hours ago, ايهاب said: I cannot edit, I am not a programmer Then it is a scripting request, moved to resources. The code has been scraped from the following topic:
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