Skip to main content

AddStaticVehicleEx

คำอธิบาย

Adds a 'static' vehicle (models are pre-loaded for players)to the gamemode. Differs from AddStaticVehicle in only one way: allows a respawn time to be set for when the vehicle is left unoccupied by the driver.

NameDescription
modelidThe Model ID for the vehicle.
Float:spawn_XThe X-coordinate for the vehicle.
Float:spawn_YThe Y-coordinate for the vehicle.
Float:spawn_ZThe Z-coordinate for the vehicle.
Float:z_angleThe facing - angle for the vehicle.
color1The primary color ID.
color2The secondary color ID.
respawn_delayThe delay until the car is respawned without a driver, in seconds.
addsirenHas a default value 0. Enables the vehicle to have a siren, providing the vehicle has a horn.

ส่งคืน

The vehicle ID of the vehicle created (1 - MAX_VEHICLES).

INVALID_VEHICLE_ID (65535) if vehicle was not created (vehicle limit reached or invalid vehicle model ID passed).

ตัวอย่าง

public OnGameModeInit()
{
// Add a Hydra (520) to the game that will respawn 15 seconds after being left
AddStaticVehicleEx (520, 2109.1763, 1503.0453, 32.2887, 82.2873, -1, -1, 15);

return 1;
}

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