SetPlayerHealth

From Onset Developer Wiki
Revision as of 18:11, 13 January 2020 by 28days (talk | contribs)
SetPlayerHealth

Type: Function
Context: Server
Introduced: v1.0

Description

You can set the player's health in a range of 0 to 100 units.

Syntax

SetPlayerHealth(player, health)

Parameters

  • player
    Player you want to set health of
  • health
    New health value you want to set player to

Return Value

  • __EDIT_ME__

Example

function heal(player)
   SetPlayerHealth(player, 100)
   AddPlayerChat(player, 'You/'ve healed yourself')
end
AddCommand('heal', heal)

See also

Template:PlayerFunctions