GetPlayerMoney

From Multi Theft Auto: Wiki
Revision as of 20:01, 20 May 2006 by Ransom (talk | contribs)
Jump to navigation Jump to search

Returns the money level of a player

Syntax

getPlayerMoney ( player )

Required Arguments

  • Player: Tells the function to give money to a player

Example

addEventHandler ( "onPlayerConsole", root, "onConsole" )
function onConsole ( message )
	if gettok(message, 1, 32) == "!checkcash" then --when the player types !checkcash in the console
		local playermoney = getPlayerMoney ( source ) --set playermoney varible to player's current cash
		outputChatBox ( "Your cash: ".. playermoney ) --display their current cash in the chatbox
	end
end

See Also