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
trigger = "playlolly"

Supported Vehicles

OptionTypeDescription
vehiclesnumber{}Vehicle hashes for autonomous support
config.lua
vehicles = { 2006210393, -252836656, 967185883, -1290262746, 1281801152, 1717202867, -964913869, -2086233241, -450863688, 170327252, 2014463299 }

Speed Measurement System

OptionTypeDescription
speedMeasurementstringSpeed measurement system (KM/H or MPH)
config.lua
speedMeasurement = "KM/H"

Vehicle Blip

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

Autopilot

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

Reckless

OptionTypeDescription
autopilot.reckless.statusbooleanEnable / Disable the argument
autopilot.reckless.argumentstringChat trigger argument

Speed

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

Crash Avoidance

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

Auto Lane Change

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

Auto Park

OptionTypeDescription
autoPark.statusbooleanEnable / Disable the command
autoPark.commandstringChat trigger command
config.lua
autoPark = {
  status = true,
  command = "park"
}

Reverse Camera

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

Adaptive Lighting

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

Smart Summon

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

Reckless

OptionTypeDescription
smartSummon.reckless.statusbooleanEnable / Disable the argument
smartSummon.reckless.argumentstringChat trigger argument

Speed

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

Dance Mode

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

HUD

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