GetPedArmor: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(New page: __NOTOC__ {{Client function}} This function returns the current armor of the specified ped. ==Syntax== <syntaxhighlight lang="lua">float getPedArmor ( ped thePed )</syntaxhighlight> ===Required Arguments=== *...)
 
mNo edit summary
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Client function}}
{{Server client function}}
This function returns the current armor of the specified [[ped]].
This function returns the current armor of the specified [[ped]].


Line 24: Line 24:


==See Also==
==See Also==
{{Client_ped_functions}}
{{Ped functions}}

Revision as of 19:59, 25 May 2008

This function returns the current armor of the specified ped.

Syntax

float getPedArmor ( ped thePed )

Required Arguments

  • thePed: The ped whose armor you want to check

Returns

A float with the armor, false if an invalid ped was given.

Example

This example defines a "showarmor" console command that shows the player that executes it how much armor he has.

function showArmor ( )
	local me = getLocalPlayer ( )
	local armor = getPedArmor ( me )
	outputChatBox( "Your armor: " .. armor )
end
addCommandHandler ( "showarmor", showArmor )

See Also