IsPlayerDead

From Onset Developer Wiki
Revision as of 10:05, 12 December 2019 by 28days (talk | contribs)
IsPlayerDead

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

Description

Check if a player is dead.

Syntax

IsPlayerDead(player)

Parameters

  • player
    The player identifier.

Return Value

  • Returns true on success.

Example

AddCommand("acceptdeath", function(playerid)
    if not IsPlayerDead(player) then
        return AddPlayerChat(playerid, "You are not dead.")
    end

    AddPlayerChat(playerid, "You have accepted death and will respawn shortly.")
end)

See also

Template:PlayerFunctions