Ugrás a fő tartalomhoz

TogglePlayerSpectating

Description

Toggle whether a player is in spectator mode or not. While in spectator mode a player can spectate (watch) other players and vehicles. After using this function, either PlayerSpectatePlayer or PlayerSpectateVehicle needs to be used.

NameDescription
playeridThe ID of the player who should spectate
bool:toggle'true' to enable spectating and 'false to disable

Returns

true - The function executed successfully.

false - The function failed to execute. The player does not exist.

Examples

public OnPlayerDeath(playerid, killerid, WEAPON:reason)
{
TogglePlayerSpectating(playerid, true);
PlayerSpectatePlayer(playerid, killerid);
return 1;
}

Notes

tanács

When spectator mode is disabled, OnPlayerSpawn will automatically be called, if you wish to restore player to state before spectating, you will have to handle that in OnPlayerSpawn. Note also, that player can also go to class selection before if they used F4 during spectate, a player also CAN die in spectate mode due to various glitches.

tanács

When a player is in spectate mode their HUD is hidden, making it useful for setting a player's camera without the HUD. Also, objects near the player's camera will be streamed in, making this useful for interpolating cameras.

vigyázat

If the player is not loaded in before setting the spectate status to false, the connection can be closed unexpectedly.