AR/getPlayerMoney: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "__NOTOC__ {{Server client function}} هذه الوظيفة تقوم باحضار مال الاعب ==Syntax== <syntaxhighlight lang="lua"> string getPlayerMoney ( player thePlayer ) </syntaxhighlight> =...")
 
(Changed to arabic template)
 
Line 27: Line 27:


==See Also==
==See Also==
{{Server player functions}}
{{AR/Player functions}}

Latest revision as of 07:51, 28 September 2023

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

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