AR/getPlayerAccount: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Server function}}
{{Server function}}
This function returns the specified player's [[account]] object.
لاعب معين [[account]] تستخدم هذه الوظيفة للحصول على حساب


==Syntax==
==Syntax==
Line 9: Line 9:


===Required Arguments===
===Required Arguments===
* '''thePlayer:''' The [[player]] element you want to get the [[account]] of.
* '''thePlayer:''' اللاعب الذي تريد الحصول على حسابه.


===Returns===
===Returns===
Returns the player's account object, or ''false'' if the player passed to the function is invalid.
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.
This example sets a player's money and also stores the value is his account.
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">

Revision as of 13:47, 30 August 2012

لاعب معين account تستخدم هذه الوظيفة للحصول على حساب

Syntax

account getPlayerAccount ( player thePlayer )

Required Arguments

  • thePlayer: اللاعب الذي تريد الحصول على حسابه.

Returns

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

مثال

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)

انظر ايضاً