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
Config.Trigger = "playlolly"
Supported Vehicles
Option | Type | Description |
---|---|---|
Vehicles | number{} | 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
Option | Type | Description |
---|---|---|
SpeedMeasurement | string | Speed measurement system (KM/H or MPH) |
config.lua
Config.SpeedMeasurement = "KM/H"
Vehicle Blip
Option | Type | Description |
---|---|---|
visibility | boolean | Visibility of the blip |
name | string | Set a custom blip name |
sprite | number | Set a custom blip icon |
color | number | Set a custom blip color |
size | number | Set a custom blip size |
config.lua
Config.Blip = {
visibility = true,
name = "Vehicle",
sprite = 620,
color = 75,
size = 0.7
}
Autopilot
Option | Type | Description |
---|---|---|
status | boolean | Enable / Disable the command |
command | string | Chat trigger command |
defaultSpeed | number | Default speed in meters per second |
Reckless
Option | Type | Description |
---|---|---|
status | boolean | Enable / Disable the argument |
argument | string | Chat trigger argument |
Speed
Option | Type | Description |
---|---|---|
status | boolean | Enable / Disable the argument |
config.lua
Config.Autopilot = {
status = true,
command = "pilot",
defaultSpeed = 50,
reckless = {
status = true,
argument = "reckless"
},
speed = {
status = true
}
}
Crash Avoidance
Option | Type | Description |
---|---|---|
status | boolean | Enable / Disable the command |
command | string | Chat trigger command |
config.lua
Config.CrashAvoidance = {
status = true,
command = "crash"
}
Auto Lane Change
Option | Type | Description |
---|---|---|
status | boolean | Enable / Disable the command |
command | string | Chat trigger command |
config.lua
Config.AutoLaneChange = {
status = true,
command = "lanes"
}
Auto Park
Option | Type | Description |
---|---|---|
status | boolean | Enable / Disable the command |
command | string | Chat trigger command |
locations | vector4{} | 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
Option | Type | Description |
---|---|---|
status | boolean | Enable / Disable the command |
command | string | Chat trigger command |
config.lua
Config.ReverseCamera = {
status = true,
command = "reverse"
}
Adaptive Lighting
Option | Type | Description |
---|---|---|
status | boolean | Enable / Disable the command |
command | string | Chat trigger command |
config.lua
Config.AdaptiveLighting = {
status = true,
command = "light"
}
Smart Summon
Option | Type | Description |
---|---|---|
status | boolean | Enable / Disable the command |
command | string | Chat trigger command |
maximumDistance | number | Maximum distance between the player and the vehicle |
defaultSpeed | number | Default speed in meters per second |
Reckless
Option | Type | Description |
---|---|---|
status | boolean | Enable / Disable the argument |
argument | string | Chat trigger argument |
Speed
Option | Type | Description |
---|---|---|
status | boolean | Enable / 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
Option | Type | Description |
---|---|---|
status | boolean | Enable / Disable the command |
command | string | Chat trigger command |
config.lua
Config.DanceMode = {
status = true,
command = "dance"
}
HUD
Option | Type | Description |
---|---|---|
status | boolean | Enable / Disable the command |
command | string | Chat trigger command |
config.lua
Config.Hud = {
status = true,
command = "dance"
}