SetPlayerArmor

From Onset Developer Wiki
SetPlayerArmor

Type: Function
Context: Server
Introduced: v1.0

Description

Set the armor of the player.

Syntax

SetPlayerArmor(player, armor)

Parameters

  • player
    The player identifier.
  • armor
    The armor value.

Return Value

  • This function doesn't have a return value.

Example

--This command allows players to set refill their armor
function armor(player)
   SetPlayerArmor(player, 100)
end
AddCommand('armor', armor)

See also