GetPlayerMoney: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
(Fixed client syntax, added sections)
Line 4: Line 4:


==Syntax==  
==Syntax==  
<syntaxhighlight lang="lua">int getPlayerMoney ( player thePlayer )</syntaxhighlight>  
<section show="true" name="Server" class="server">
<syntaxhighlight lang="lua">int/bool getPlayerMoney ( player thePlayer )</syntaxhighlight>  


===Required Arguments===  
===Required Arguments===  
Line 10: Line 11:


===Returns===
===Returns===
Returns an integer with the amount of money the player has, ''false'' if the player is invalid.
Returns an integer with the amount of money the specified player has, ''false'' if the player is invalid.
</section>
 
<section show="true" name="Client" class="client">
<syntaxhighlight lang="lua">int getPlayerMoney ( )</syntaxhighlight>
 
===Returns===
Returns an integer with the amount of money the local player has.
</section>


==Example==
==Example==
<section show="true" name="Server" class="server">
When a player types '/checkMoney' this example retrieves the player's money and outputs a message according to the value.
When a player types '/checkMoney' this example retrieves the player's money and outputs a message according to the value.
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
Line 25: Line 35:
addCommandHandler("checkMoney", checkMoney)                                    -- add the console command
addCommandHandler("checkMoney", checkMoney)                                    -- add the console command
</syntaxhighlight>
</syntaxhighlight>
</section>


==See Also==
==See Also==
{{Player functions}}
{{Player functions}}

Revision as of 23:28, 14 November 2011

Returns the amount of money a player currently has.

Syntax

Click to collapse [-]
Server
int/bool getPlayerMoney ( player thePlayer )

Required Arguments

  • thePlayer: The player you wish the retrieve the amount of money from.

Returns

Returns an integer with the amount of money the specified player has, false if the player is invalid.

Click to collapse [-]
Client
int getPlayerMoney ( )

Returns

Returns an integer with the amount of money the local player has.

Example

Click to collapse [-]
Server

When a player types '/checkMoney' this example retrieves the player's money and outputs a message according to the value.

function checkMoney(thePlayer, command)
	local money = getPlayerMoney(thePlayer)                                -- get the amount of money from the player who entered the command
	if (money > 1000) then                                                 -- if money is more than 1000
		outputChatBox("You are rich: " .. tostring(money), thePlayer)  -- output this message together with the money
 	else
		outputChatBox("Poor guy...", thePlayer)                        -- and else, output this message
	end
end
addCommandHandler("checkMoney", checkMoney)                                    -- add the console command

See Also