Scripting/Squirrel/Functions/CreateVehicle: Difference between revisions
Jump to navigation
Jump to search
This wiki is using an old backup from 2020
Some information may be old/missing
No edit summary |
No edit summary |
||
Line 8: | Line 8: | ||
<pre>CreateVehicle( model, world, pos, angle, col1, col2 )</pre> | <pre>CreateVehicle( model, world, pos, angle, col1, col2 )</pre> | ||
'''3''' | '''3''' | ||
<pre>CreateVehicle( model, world, x, y, z, angle, | <pre>CreateVehicle( model, world, x, y, z, angle, col1 , col2 )</pre> | ||
== Arguments == | == Arguments == | ||
Revision as of 08:09, 27 February 2015
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
- ResetAllVehicleHandling
- IsHandlingRuleSet
- SetHandlingRule
- GetHandlingRule
- ResetHandlingRule
- ResetVehicleHandling
- Vehicle.AddRelTurnSpeed
- Vehicle.AddSpeed
- Vehicle.AddTurnSpeed
- Vehicle.Alarm
- Vehicle.Angle
- Vehicle.Colour1
- Vehicle.Colour2
- Vehicle.Damage
- Vehicle.Delete
- Vehicle.Driver
- Vehicle.EulerAngle
- Vehicle.EulerSpawnAngle
- Vehicle.Fix
- Vehicle.GetHandlingData
- Vehicle.GetOccupant
- Vehicle.GetPart
- Vehicle.GetTyre
- Vehicle.Health
- Vehicle.ID
- Vehicle.Immunity
- Vehicle.IsGhost
- Vehicle.IsHandlingSet
- Vehicle.Kill
- Vehicle.Lights
- Vehicle.Locked
- Vehicle.Model
- Vehicle.Pos
- Vehicle.Radio
- Vehicle.RadioLocked
- Vehicle.RelativeSpeed
- Vehicle.RelativeTurnSpeed
- Vehicle.ResetAllHandling
- Vehicle.ResetHandlingData
- Vehicle.Respawn
- Vehicle.RespawnTimer
- Vehicle.Rotation
- Vehicle.SetFlatTyres
- Vehicle.SetHandlingData
- Vehicle.SetPart
- Vehicle.SetTyre
- Vehicle.Siren
- Vehicle.SpawnAngle
- Vehicle.SpawnPos
- Vehicle.Speed
- Vehicle.StreamedForPlayer
- Vehicle.SyncSource
- Vehicle.SyncType
- Vehicle.TurnSpeed
- Vehicle.TurretRotation
- Vehicle.World
- Vehicle.Wrecked