Scripting/Squirrel/Functions/Vehicle.Lights

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

Syntax

Vehicle.Lights = false;
Vehicle.Lights = true;

Example

function onPlayerCommand ( player, cmd , text )
{
if ( cmd == "lights" )
{
if ( !text ) MessagePlayer("/lights (on/off)", player);
else if ( text == "on" )
{
vehicle.Lights = true
MessagePlayer("Vehicle lights have been turned on!", player);
}
else if ( text == "off" )
{
vehicle.Lights = false;
MessagePlayer("Vehicle lights are turned off", player);
}
else MessagePlayer("You're not in any vehicle", player);
}
}

Notes

Function onPlayerCommand was used.

Related Functions