انتقل إلى المحتوى الرئيسي

AddStaticVehicle

Description

Adds a 'static' vehicle (models are pre-loaded for players) to the gamemode.

NameDescription
spawnXThe Model ID for the vehicle.
Float:spawnXThe X-coordinate for the vehicle.
Float:spawnYThe Y-coordinate for the vehicle.
Float:spawnZThe Z-coordinate for the vehicle.
Float:angleDirection of vehicle - angle.
colour1The primary colour ID. -1 for random.
colour2The secondary colour ID. -1 for random.

Returns

The vehicle ID of the vehicle created (between 1 and MAX_VEHICLES).

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

Examples

public OnGameModeInit()
{
// Add a Hydra to the game
AddStaticVehicle(520, 2109.1763, 1503.0453, 32.2887, 82.2873, 0, 1);

return 1;
}