GetPlayerAccount: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
Line 17: Line 17:
This example sets a player's money and also stores the value is his account.
This example sets a player's money and also stores the value is his account.
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
function setMoney ( thePlayer, key, amount )
function setMoney(thePlayer,key,amount)
     setPlayerMoney ( thePlayer, amount )
     setPlayerMoney (thePlayer,amount)
     local account = getPlayerAccount ( thePlayer )
     local account = getPlayerAccount(thePlayer)
     if ( account ) then
     if account and tonumber(amount) then
         setAccountData ( account, "money", amount )
         setAccountData(account,"money",amount)
     end
     end
end
end
addCommandHandler ( "setmoney", setMoney )
addCommandHandler("setmoney",setMoney)
</syntaxhighlight>
</syntaxhighlight>



Revision as of 17:11, 24 April 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)

See Also