AddStaticVehicle

From SA-MP Wiki

Revision as of 16:26, 17 June 2011; view current revision
←Older revision | Newer revision→
Jump to: navigation, search


You can use this function to add vehicles to your gamemode. This function can only create vehicles in the OnGameModeInit and the OnFilterScriptInit callback. Check CreateVehicle if you are interested in creating vehicles during game-runtime.


Parameters:
(modelid, Float:spawn_x, Float:spawn_y, Float:spawn_z, Float:angle, color1, color2)
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:angleDirection of vehicle - angle.
color1The primary color ID.
color2The secondary color ID.


ReturnsThe vehicle ID of the vehicle created.


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 may be useful, as they are related to this function in one way or another.

Personal tools