PlayerSpectatePlayer

PlayerSpectatePlayer

Description:
Function PlayerSpectatePlayer makes a player spectate (watch) another player.


Parameters:
(playerid, targetplayerid, mode = SPECTATE_MODE_NORMAL)
int playerid The ID of the player that will spectate.
int targetplayerid The ID of the player that should be spectated.
int mode The mode to spectate with (optional; defaults to 'normal').


Return Values:
  • 1: The function was executed successfully.
  • 0: The function failed to execute. One of the players specified does not exist.


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


Related Functions
The following functions may be useful, as they are related to this function in one way or another.