HU/getPlayerAccount

From Multi Theft Auto: Wiki
Revision as of 12:24, 14 December 2018 by Surge (talk | contribs) (Created page with "__NOTOC__ {{Server function}} This function returns the specified player's account object. ==Szintaxis== <syntaxhighlight lang="lua"> account getPlayerAccount ( player th...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This function returns the specified player's account object.

Szintaxis

account getPlayerAccount ( player thePlayer )

OOP Syntax Help! I don't understand this!

Note: Static method Account.getFromPlayer() can also be used
Method: player:getAccount(...)
Variable: .account


Required Arguments

Visszatérési érték

Returns the player's account object, or false if the player passed to the function is invalid.

Példa

This example sets a player's money and also stores the value is his account.

function setMoney(thePlayer,key,amount)
    local account = getPlayerAccount(thePlayer)
    if account and tonumber(amount) then
        setPlayerMoney (thePlayer,amount)
        setAccountData(account,"money",amount)
    end
end
addCommandHandler("setmoney",setMoney)

Lásd még