Skip to main content

PlayerSpectatePlayer

คำอธิบาย

Makes a player spectate (watch) another player.

NameDescription
playeridThe ID of the player that will spectate.
targetplayeridThe ID of the player that should be spectated.
modeThe mode to spectate with (optional; defaults to 'normal').

ส่งคืน

1: The function was executed successfully.

0: The function failed to execute. One of the players specified does not exist.

ตัวอย่าง

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

บันทึก

warning

Order is CRITICAL! Ensure that you use TogglePlayerSpectating before PlayerSpectatePlayer. playerid and targetplayerid's virtual world and interior must be the same for this function to work properly.

ฟังก์ชั่นที่เกี่ยวข้องกัน

  • PlayerSpectateVehicle: Spectate a vehicle.
  • TogglePlayerSpectating: Start or stop spectating.