AR/getPlayerMoney

From Multi Theft Auto: Wiki
Revision as of 20:29, 17 October 2012 by Talal07 (talk | contribs) (Created page with "__NOTOC__ {{Server client function}} هذه الوظيفة تقوم باحضار مال الاعب ==Syntax== <syntaxhighlight lang="lua"> string getPlayerMoney ( player thePlayer ) </syntaxhighlight> =...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

هذه الوظيفة تقوم باحضار مال الاعب

Syntax

string getPlayerMoney ( player thePlayer )

Required Arguments

  • thePlayer: الاعب الذي تريد احضار اسمه

Returns

Returns a string containing the requested player's name, or false if the player passed to the function is invalid.

Example

Click to collapse [-]
Server
addCommandHandler("mymoney",
  function(playerSource)
    outputChatBox("Your money: "..getPlayerMoney(playerSource), playerSource)
  end
)


See Also

Template:Server player functions