AddStaticVehicle
From SA-MP Wiki
AddStaticVehicle
You can use this function to add vehicles to your gamemode. This function can only create vehicles in the OnGameModeInit callback, and vehicles created with this function cannot be removed. Check CreateVehicle if you are interested in creating vehicles during game-runtime.
(modelid, Float:spawn_x, Float:spawn_y, Float:spawn_z, Float:angle, color1, color2)
| modelid | The Vehicle ID for the vehicle. |
| Float:spawn_X | The X-coordinate for the vehicle. |
| Float:spawn_Y | The Y-coordinate for the vehicle. |
| Float:spawn_Z | The Z-coordinate for the vehicle. |
| Float:angle | Direction of vehicle - angle. |
| color1 | The primary color ID. |
| color2 | The secondary color ID. |
This function does not return a specific value, it's best to simply ignore it.
public OnGameModeInit( ) { // Add a Hydra to the game AddStaticVehicle(520, 2109.1763, 1503.0453, 32.2887, 82.2873, 0, 1); return 1; }
Related Functions
The following functions might be useful as well, as they're related to this function in one way or another.
- AddStaticVehicleEx: Add a static vehicle with custom respawn time.
- CreateVehicle: Create a vehicle.
- DestroyVehicle: Destroy a vehicle.
