SpawnVehicle

From Multi Theft Auto: Wiki
Revision as of 21:20, 24 August 2008 by Lil Toady (talk | contribs) (Undo revision 17633 by Lil Toady (Talk))
Jump to navigation Jump to search

Spawns a vehicle at any given position and rotation

Syntax

bool spawnVehicle ( vehicle theVehicle, float x, float y, float z, float rx, float ry, float rz )

Required Arguments

  • theVehicle: The vehicle you wish to spawn
  • x: The x position you wish to spawn the vehicle at
  • y: The x position you wish to spawn the vehicle at
  • z: The x position you wish to spawn the vehicle at
  • rx: The x rotation you wish to spawn the vehicle at
  • ry: The y rotation you wish to spawn the vehicle at
  • rz: The z rotation you wish to spawn the vehicle at

Returns

Returns true if the vehicle spawned successfully, false if the passed argument does not exist or is not a vehicle.

Example

There is no exmple.

Related scripting functions