GetPlayerArmor: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
Line 1: Line 1:
__NOTOC__
__NOTOC__
==Description==
This function returns a float that contains the current armor for the specified [[player]].
This function returns a float that contains the current armor for the specified [[player]].


Line 10: Line 9:


==Example==
==Example==
<syntaxhighlight lang="lua">-- get health of 'someguy' and show it in the chat
This example gets health of the player called 'someguy' and shows it in the chat
tmpplayer = getPlayerFromNick ( "someguy" )
<syntaxhighlight lang="lua">tmpplayer = getPlayerFromNick ( "someguy" )
armor = getPlayerArmor ( tmpplayer )
armor = getPlayerArmor ( tmpplayer )
outputChatBox ( "The player's armor is: " .. armor )</syntaxhighlight>
outputChatBox ( "The player's armor is: " .. armor )</syntaxhighlight>

Revision as of 09:53, 14 August 2006