SetPlayerSpectate
From Onset Developer Wiki
Description
Toggle the player spectate mode.
Syntax
SetPlayerSpectate(player, bSpectate)
Parameters
- player
The player identifier. - bSpectate
The boolean status.
Return Value
- This function returns nothing.
Example
function cmd_spec(player, disable)
local _disable = false
if disable ~= nil then
_disable = true
end
_disable = not _disable
SetPlayerSpectate(player, _disable)
end
AddCommand("spec", cmd_spec)