GetPlayerAccount: Difference between revisions
Jump to navigation
Jump to search
(→Syntax: OOP syntax added) |
m (→Syntax: OOP) |
||
Line 7: | Line 7: | ||
account getPlayerAccount ( player thePlayer ) | account getPlayerAccount ( player thePlayer ) | ||
</syntaxhighlight> | </syntaxhighlight> | ||
{{OOP|This function is also a static function underneath the Account class.|[[account]]:getFromPlayer||}} | |||
{{OOP||[[player]]:getAccount||}} | {{OOP||[[player]]:getAccount||}} | ||
===Required Arguments=== | ===Required Arguments=== |
Revision as of 16:05, 22 August 2014
This function returns the specified player's account object.
Syntax
account getPlayerAccount ( player thePlayer )
OOP Syntax Help! I don't understand this!
- Note: This function is also a static function underneath the Account class.
- Method: account:getFromPlayer(...)
OOP Syntax Help! I don't understand this!
- Method: player:getAccount(...)
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)
See Also
- addAccount
- copyAccountData
- getAccount
- getAccountData
- getAccountName
- getAccountPlayer
- getAccountSerial
- getAccounts
- getAccountsBySerial
- getAllAccountData
- getPlayerAccount
- isGuestAccount
- logIn
- logOut
- removeAccount
- setAccountData
- setAccountPassword
- getAccountByID
- getAccountID
- getAccountIP
- getAccountsByData
- getAccountsByIP
- setAccountName