AR/getPlayerAccount: Difference between revisions
Jump to navigation
Jump to search
(→Syntax) |
(→مثال) |
||
Line 18: | Line 18: | ||
<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 and tonumber(amount) then | if account and tonumber(amount) then |
Revision as of 18:12, 25 July 2015
لاعب معين account تستخدم هذه الوظيفة للحصول على حساب
Syntax
account getPlayerAccount ( player thePlayer )
العناصر المطلوبة
- 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)