AR/getPlayerAccount: Difference between revisions
Jump to navigation
Jump to search
(Created page with "__NOTOC__ {{Server function}} This function returns the specified player's account object. ==Syntax== <syntaxhighlight lang="lua"> account getPlayerAccount ( player thePlayer ) </syntaxhighlight> ==...") |
No edit summary |
||
Line 27: | Line 27: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
== | ==انظر ايضاً== | ||
{{AR Account_functions}} | {{AR Account_functions}} | ||
[[en:getPlayerAccount]] | [[en:getPlayerAccount]] |
Revision as of 03:49, 28 August 2012
This function returns the specified player's account object.
Syntax
account getPlayerAccount ( player thePlayer )
Required Arguments
Returns
Returns the player's account object, or false if the player passed to the function is invalid.
Example
This example sets a player's money and also stores the value is his account.
function setMoney(thePlayer,key,amount) setPlayerMoney (thePlayer,amount) local account = getPlayerAccount(thePlayer) if account and tonumber(amount) then setAccountData(account,"money",amount) end end addCommandHandler("setmoney",setMoney)