Scripting/Squirrel/Functions/CreateVehicle

From Vice City Multiplayer
Jump to navigation Jump to search
Caution icon
This wiki is using an old backup from 2020
Some information may be old/missing

This function will create a vehicle.

Syntax

1

CreateVehicle( model, pos, angle, col1, col2)

2

CreateVehicle( model, world, pos, angle, col1, col2 )

3

CreateVehicle( model, world, x, y, z, angle, col1 , col2 )

Arguments

1

  • int model - The model ID of the vehicle.
  • Vector pos - The position of the vehicle.
  • float angle - The rotation angle of the vehicle.
  • int col1 - The Color1 of the vehicle.
  • int col2 - The Color2 of the vehicle.

2

  • int model - The model ID of the vehicle.
  • int world - The world of the vehicle.
  • Vector pos - The position of the vehicle.
  • float angle - The rotation angle of the vehicle.
  • int col1 - The Color1 of the vehicle.
  • int col2 - The Color2 of the vehicle.

3

  • int model - The model ID of the vehicle.
  • int world - The world of the vehicle.
  • float x - The x position of the vehicle.
  • float y - The y position of the vehicle.
  • float z - The z position of the vehicle.
  • float angle - The rotation angle of the vehicle.
  • int col1 - The Color1 of the vehicle.
  • int col2 - The Color2 of the vehicle.

Example

function onServerStart(){
  CreateVehicle( 171, 0, -848.975,-466.336,10.1645, 360.255, 68, 39 );
}

Notes

Call onServerStart were used in this example. More info about them in the corresponding pages.

Related Functions