GetPlayerAccount: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
__NOTOC__ | |||
__NOTOC__ | |||
{{Server function}} | {{Server function}} | ||
This function returns the specified player's [[account]] object. | |||
==Syntax== | ==Syntax== | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
account getPlayerAccount ( player thePlayer ) | |||
</syntaxhighlight> | |||
===Required Arguments=== | ===Required Arguments=== | ||
*'''thePlayer:''' The player you | * '''thePlayer:''' The [[player]] element you want to get the [[account]] of. | ||
===Returns=== | ===Returns=== | ||
Returns | Returns the player's account object, or ''false'' if the player passed to the function is invalid. | ||
==Example== | ==Example== | ||
This example sets a player's money and also stores the value is his account. | |||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
function | function setMoney ( thePlayer, key, amount ) | ||
setPlayerMoney ( thePlayer, amount ) | |||
local account = getPlayerAccount ( thePlayer ) | |||
if ( account ) then | |||
setAccountData ( account, "money", amount ) | |||
end | |||
end | end | ||
addCommandHandler ( "setmoney", setMoney ) | |||
addCommandHandler(" | |||
</syntaxhighlight> | </syntaxhighlight> | ||
==See Also== | ==See Also== | ||
{{Player functions}} | {{Player functions}} | ||
Revision as of 14:33, 27 March 2009
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 ) then setAccountData ( account, "money", amount ) end end addCommandHandler ( "setmoney", setMoney )
See Also
- getPlayerTeam
- getPlayerBlurLevel
- setPlayerBlurLevel
- getPlayerSerial
- forcePlayerMap
- getPlayerScriptDebugLevel
- getPlayerFromName
- getPlayerMoney
- getPlayerName
- getPlayerNametagColor
- getPlayerNametagText
- getPlayerPing
- getPlayerWantedLevel
- givePlayerMoney
- isPlayerMapForced
- isPlayerNametagShowing
- setPlayerHudComponentVisible
- setPlayerMoney
- setPlayerNametagColor
- setPlayerNametagShowing
- setPlayerNametagText
- takePlayerMoney
- countPlayersInTeam
- getPlayersInTeam
- isVoiceEnabled
- setControlState
- getControlState