Skip to main content

PlayerSpectateVehicle

คำอธิบาย

Sets a player to spectate another vehicle. Their camera will be attached to the vehicle as if they are driving it.

NameDescription
playeridThe ID of the player who should spectate a vehicle.
targetvehicleidThe ID of the vehicle the player should spectate.
modeThe spectate mode. Can generally be left blank as it defaults to 'normal'.

ส่งคืน

1: The function was executed successfully. Note that success is reported if the player is not in spectator mode (TogglePlayerSpectating), but nothing will happen. TogglePlayerSpectating MUST be used first.

0: The function failed to execute. The player, vehicle, or both don't exist.

ตัวอย่าง

TogglePlayerSpectating(playerid, 1);
PlayerSpectateVehicle(playerid, vehicleid);

บันทึก

warning

Order is CRITICAL! Ensure that you use TogglePlayerSpectating before PlayerSpectateVehicle. The playerid and vehicleid have to be in the same interior and virtual world for this function to work properly.

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

  • PlayerSpectatePlayer: Spectate a player.
  • TogglePlayerSpectating: Start or stop spectating.