Configuration

The configuration options can be found in the config.lua file.

Chat Trigger Command

Command which must be called in the chat with / to trigger the chat suggestions.

OptionTypeDescription
TriggerstringChat trigger command starting with /
config.lua
Config.Trigger = "playlolly"

Supported Vehicles

OptionTypeDescription
Vehiclesnumber{}Vehicle hashes for autonomous support
config.lua
Config.Vehicles = {-1894894188, 662793086, -1622444098, 989294410, -1529242755, 1392481335, 1031562256, -1848994066,
                   -505223465, 1147287684, -537896628, -769147461, 1560980623, -286046740, -1132721664, -1130810103,
                   544021352, 1062354409, 1826165785, 1192994681, 324792135, -1819381858, -1540353819, -1713111951,
                   245469948, -1254644315, -1651949534, -1342288411, -2034828457, 1610395107, -1116936002, 2006210393,
                   -252836656, 967185883, -1290262746, 1281801152, 1717202867, -964913869, -2086233241, -450863688,
                   170327252, 2014463299}

Speed Measurement System

OptionTypeDescription
SpeedMeasurementstringSpeed measurement system (KM/H or MPH)
config.lua
Config.SpeedMeasurement = "KM/H"

Vehicle Blip

OptionTypeDescription
visibilitybooleanVisibility of the blip
namestringSet a custom blip name
spritenumberSet a custom blip icon
colornumberSet a custom blip color
sizenumberSet a custom blip size
config.lua
Config.Blip = {
  visibility = true,
  name = "Vehicle",
  sprite = 620,
  color = 75,
  size = 0.7
}

Autopilot

OptionTypeDescription
statusbooleanEnable / Disable the command
commandstringChat trigger command
defaultSpeednumberDefault speed in meters per second

Reckless

OptionTypeDescription
statusbooleanEnable / Disable the argument
argumentstringChat trigger argument

Speed

OptionTypeDescription
statusbooleanEnable / Disable the argument
config.lua
Config.Autopilot = {
  status = true,
  command = "pilot",
  defaultSpeed = 50,
  reckless = {
    status = true,
    argument = "reckless"
  },
  speed = {
    status = true
  }
}

Crash Avoidance

OptionTypeDescription
statusbooleanEnable / Disable the command
commandstringChat trigger command
config.lua
Config.CrashAvoidance = {
  status = true,
  command = "crash"
}

Auto Lane Change

OptionTypeDescription
statusbooleanEnable / Disable the command
commandstringChat trigger command
config.lua
Config.AutoLaneChange = {
  status = true,
  command = "lanes"
}

Auto Park

OptionTypeDescription
statusbooleanEnable / Disable the command
commandstringChat trigger command
locationsvector4{}Parking locations
config.lua
Config.AutoPark = {
  status = true,
  command = "park",
  locations = {vector4(2574.82, 312.75, 108.08, 0.0), vector4(2571.1, 312.73, 108.08, 0.0), ...}
}

Reverse Camera

OptionTypeDescription
statusbooleanEnable / Disable the command
commandstringChat trigger command
config.lua
Config.ReverseCamera = {
  status = true,
  command = "reverse"
}

Adaptive Lighting

OptionTypeDescription
statusbooleanEnable / Disable the command
commandstringChat trigger command
config.lua
Config.AdaptiveLighting = {
  status = true,
  command = "light"
}

Smart Summon

OptionTypeDescription
statusbooleanEnable / Disable the command
commandstringChat trigger command
maximumDistancenumberMaximum distance between the player and the vehicle
defaultSpeednumberDefault speed in meters per second

Reckless

OptionTypeDescription
statusbooleanEnable / Disable the argument
argumentstringChat trigger argument

Speed

OptionTypeDescription
statusbooleanEnable / Disable the argument
config.lua
Config.SmartSummon = {
  status = true,
  command = "summon",
  maximumDistance = 1000,
  defaultSpeed = 20,
  reckless = {
    status = true,
    argument = "reckless"
  },
  speed = {
    status = true
  }
}

Dance Mode

OptionTypeDescription
statusbooleanEnable / Disable the command
commandstringChat trigger command
config.lua
Config.DanceMode = {
  status = true,
  command = "dance"
}

HUD

OptionTypeDescription
statusbooleanEnable / Disable the command
commandstringChat trigger command
config.lua
Config.Hud = {
  status = true,
  command = "dance"
}