GetPlayerArmor

From Onset Developer Wiki
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
GetPlayerArmor

Type: Function
Context: Server & Client
Introduced: v1.0

Description

Get the armor health of the specified player.

Syntax

GetPlayerArmor(player)
Client Syntax
GetPlayerArmor()

Parameters

  • player
    The player identifier.

Return Value

  • The armor value.

Example

AddCommand("armor", function(playerid)
	if GetPlayerArmor(playerid) < 30.0 then
		SetPlayerArmor(playerid, 100.0)
	else
		AddPlayerChat(playerid, "You have enough armor.")
	end
end)

See also