Vehicle.SpawnPos
From Liberty Unleashed Wiki
This Vehicle class member returns or sets the spawn position of the given vehicle. The vehicle will be teleported to this position after it respawns.
Syntax
You can either return or set a new value using this member:
Vector Vehicle.SpawnPos
Vehicle.SpawnPos = Vector vPos
Arguments
- vPos - This is the new spawn position for the vehicle as a vector
Example 1. Returning the value
function onPlayerCommand( pPlayer, szCommand, szText ) { if ( szCommand == "spawnpos" ) { if ( pPlayer.Vehicle ) MessagePlayer( "Your vehicle's spawn angle is currently - " + pPlayer.Vehicle.SpawnPos, pPlayer ); } return 1; }
Notes
The function MessagePlayer and event onPlayerCommand were used in this example. More info about them in the corresponding pages.
Example 2. Setting a new value
function onPlayerCommand( pPlayer, szCommand, szText ) { if ( szCommand == "spawnpos2" ) { if ( pPlayer.Vehicle ) pPlayer.Vehicle.SpawnPos = Vector( 100.00, 100.00, 2.00 ); } return 1; }
Notes
The event onPlayerCommand was used in this example. More info about this in the corresponding page.
Related Functions
- CreateVehicle
- FindVehicle
- GetClosestVehicle
- GetVehicleCount
- GetVehicleHandlingData
- GetVehicleIDFromName
- GetVehicleName
- SetVehicleHandlingData
- Vehicle.Alpha
- Vehicle.Angle
- Vehicle.Colour1
- Vehicle.Colour2
- Vehicle.Driver
- Vehicle.EngineDamage
- Vehicle.Explode
- Vehicle.Fix
- Vehicle.GetAddon
- Vehicle.GetPassenger
- Vehicle.GetHandlingData
- Vehicle.GetWheelStatus
- Vehicle.Health
- Vehicle.ID
- Vehicle.IdleRespawnTime
- Vehicle.IdleTime
- Vehicle.LightState
- Vehicle.Locked
- Vehicle.Model
- Vehicle.Marker
- Vehicle.OneTime
- Vehicle.PassengerCount
- Vehicle.Pos
- Vehicle.Remove
- Vehicle.Respawn
- Vehicle.RespawnTime
- Vehicle.RGBColour1
- Vehicle.RGBColour2
- Vehicle.SetHandlingData
- Vehicle.SetWheelStatus
- Vehicle.SpawnAngle
- Vehicle.SpawnPos
- Vehicle.SetAddon
- Vehicle.SetEngineState
- Vehicle.SetRadio
- Vehicle.Siren
- Vehicle.SirenLight
- Vehicle.TaxiLight
- Vehicle.Velocity
- Vehicle.VirtualWorld
- Vehicle.Wrecked