SetPlayerHealth: Difference between revisions

From Onset Developer Wiki
No edit summary
No edit summary
 
(2 intermediate revisions by one other user not shown)
Line 1: Line 1:
{{Info|Function|Server|1.0}}
{{Info|Function|Server|1.0}}


{{FuncDescription|You can use this to set players health (0-100)}}
{{FuncDescription|You can set the player's health in a range of 0 to 100 units.}}


{{FuncSyntax|SetPlayerHealth(player, health)}}
{{FuncSyntax|SetPlayerHealth(player, health)}}
Line 9: Line 9:
{{FuncParam|health|New health value you want to set player to}}
{{FuncParam|health|New health value you want to set player to}}


{{FuncReturnValue|__EDIT_ME__}}
{{FuncReturnValue|Returns '''true''' on success.}}


== Example ==
== Example ==
Line 15: Line 15:
function heal(player)
function heal(player)
   SetPlayerHealth(player, 100)
   SetPlayerHealth(player, 100)
   AddPlayerChat(player, 'You/'ve healed yourself')
   AddPlayerChat(player, "You've healed yourself")
end
end
AddCommand('heal', heal)
AddCommand('heal', heal)
</syntaxhighlight>
</syntaxhighlight>


{{RelatedFunctions}}
{{RelatedFunctions}}
__EDIT_ME__
{{ServerPlayerFunctions}}

Latest revision as of 14:51, 26 June 2021

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

  • Returns true on success.

Example

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

See also