SetPlayerArmor

From Multi Theft Auto: Wiki
Revision as of 10:30, 16 August 2007 by Arc (talk | contribs)
Jump to navigation Jump to search

This function allows you to set the armor value of a player.

Syntax

bool setPlayerArmor ( player thePlayer, float playerArmor )

Required Arguments

  • thePlayer: the player whose armor you want to modify.
  • playerArmor: the amount of armor you want to set on the player. Valid values are from 0 to 100.

Returns

Returns true if the armor was changed succesfully. Returns false if an invalid player is specified, or the armor value specified is out of acceptable range.

Example

Click to collapse [-]
Server

This example removes the armor of a player.

function armorOff ( thePlayer, command )
    setPlayerArmor ( thePlayer, 0 )
end

addCommandHandler ( "armoroff", armorOff )

See Also