Vehicle.OneTime
From Liberty Unleashed Wiki
This Vehicle class member returns whether the vehicle is a one time only vehicle (meaning it will be deleted after it has been exploded).
Syntax
You can either return or set a new value using this member:
bool Vehicle.OneTime
Vehicle.OneTime = bool enabled
Arguments
- enabled - A boolean representing whether the vehicle should be deleted after its destruction or not
Example 1. Returning
function onPlayerCommand( pPlayer, szCommand, szText ) { if ( szCommand == "onetime" ) { if ( pPlayer.Vehicle ) MessagePlayer( "Vehicle one time only is set to " + pPlayer.Vehicle.OneTime, 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
function onPlayerCommand( pPlayer, szCommand, szText ) { if ( szCommand == "veh" ) { local pVehicle = CreateVehicle( VEH_INFERNUS, pPlayer.Pos, pPlayer.Angle, -1, -1 ); if ( pVehicle ) pVehicle.OneTime = true; } return 1; }
Notes
The functions MessagePlayer and CreateVehicle and event onPlayerCommand were used in this example. More info about them in the corresponding pages.
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