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.
Option | Type | Description |
---|---|---|
trigger | string | Chat trigger command starting with / |
config.lua
trigger = "playlolly"
Supported Vehicles
Option | Type | Description |
---|---|---|
vehicles | number{} | Vehicle hashes for autonomous support |
config.lua
vehicles = { 2006210393, -252836656, 967185883, -1290262746, 1281801152, 1717202867, -964913869, -2086233241, -450863688, 170327252, 2014463299 }
Speed Measurement System
Option | Type | Description |
---|---|---|
speedMeasurement | string | Speed measurement system (KM/H or MPH) |
config.lua
speedMeasurement = "KM/H"
Vehicle Blip
Option | Type | Description |
---|---|---|
blip.visibility | boolean | Visibility of the blip |
blip.name | string | Set a custom blip name |
blip.sprite | number | Set a custom blip icon |
blip.color | number | Set a custom blip color |
blip.size | number | Set a custom blip size |
config.lua
blip = {
visibility = true,
name = "Tesla",
sprite = 620,
color = 75,
size = 0.7
}
Autopilot
Option | Type | Description |
---|---|---|
autopilot.status | boolean | Enable / Disable the command |
autopilot.command | string | Chat trigger command |
autopilot.defaultSpeed | number | Default speed in meters per second |
Reckless
Option | Type | Description |
---|---|---|
autopilot.reckless.status | boolean | Enable / Disable the argument |
autopilot.reckless.argument | string | Chat trigger argument |
Speed
Option | Type | Description |
---|---|---|
autopilot.speed.status | boolean | Enable / Disable the argument |
config.lua
autopilot = {
status = true,
command = "pilot",
defaultSpeed = 50,
reckless = {
status = true,
argument = "reckless"
},
speed = {
status = true
}
}
Crash Avoidance
Option | Type | Description |
---|---|---|
crashAvoidance.status | boolean | Enable / Disable the command |
crashAvoidance.command | string | Chat trigger command |
config.lua
crashAvoidance = {
status = true,
command = "crash"
}
Auto Lane Change
Option | Type | Description |
---|---|---|
autoLaneChange.status | boolean | Enable / Disable the command |
autoLaneChange.command | string | Chat trigger command |
config.lua
autoLaneChange = {
status = true,
command = "lanes"
}
Auto Park
Option | Type | Description |
---|---|---|
autoPark.status | boolean | Enable / Disable the command |
autoPark.command | string | Chat trigger command |
config.lua
autoPark = {
status = true,
command = "park"
}
Reverse Camera
Option | Type | Description |
---|---|---|
reverseCamera.status | boolean | Enable / Disable the command |
reverseCamera.command | string | Chat trigger command |
config.lua
reverseCamera = {
status = true,
command = "reverse"
}
Adaptive Lighting
Option | Type | Description |
---|---|---|
adaptiveLighting.status | boolean | Enable / Disable the command |
adaptiveLighting.command | string | Chat trigger command |
config.lua
adaptiveLighting = {
status = true,
command = "light"
}
Smart Summon
Option | Type | Description |
---|---|---|
smartSummon.status | boolean | Enable / Disable the command |
smartSummon.command | string | Chat trigger command |
smartSummon.maximumDistance | number | Maximum distance between the player and the vehicle |
smartSummon.defaultSpeed | number | Default speed in meters per second |
Reckless
Option | Type | Description |
---|---|---|
smartSummon.reckless.status | boolean | Enable / Disable the argument |
smartSummon.reckless.argument | string | Chat trigger argument |
Speed
Option | Type | Description |
---|---|---|
smartSummon.speed.status | boolean | Enable / Disable the argument |
config.lua
smartSummon = {
status = true,
command = "summon",
maximumDistance = 1000,
defaultSpeed = 20,
reckless = {
status = true,
argument = "reckless"
},
speed = {
status = true
}
}
Dance Mode
Option | Type | Description |
---|---|---|
danceMode.status | boolean | Enable / Disable the command |
danceMode.command | string | Chat trigger command |
config.lua
danceMode = {
status = true,
command = "dance"
}
HUD
Option | Type | Description |
---|---|---|
hud.status | boolean | Enable / Disable the command |
hud.command | string | Chat trigger command |
config.lua
hud = {
status = true,
command = "dance"
}