Auto Park Settings
lua
Config.AutoPark = {
enabled = true,
maxDistance = 50.0,
driveSpeed = 15.0,
precisionSnap = true,
arrivalThreshold = 3.0,
hologramAlpha = 150,
rotateSpeed = 3.0,
stuckTimeout = 15,
jobs = {},
discordRoles = {},
}
Fields
| Field | Type | Default | Description |
|---|---|---|---|
enabled | boolean | true | Master toggle |
maxDistance | number | 50.0 | Max placement distance from player (meters) |
driveSpeed | number | 15.0 | Vehicle drive speed during parking (km/h) |
precisionSnap | boolean | true | Snap to exact hologram position when within threshold |
arrivalThreshold | number | 3.0 | Distance to switch from drive to snap (meters) |
hologramAlpha | number | 150 | Hologram transparency (0-255, 0 = invisible, 255 = solid) |
rotateSpeed | number | 3.0 | Mouse-scroll rotation speed (degrees per tick) |
stuckTimeout | number | 15 | Seconds before auto-retry if vehicle stops moving |
jobs | string[] | {} | Job whitelist |
discordRoles | string[] | {} | Discord role whitelist |
Tuning Recommendations
| Setting | Recommendation |
|---|---|
maxDistance | 50 m is a good default for street parking. Increase to 80-100 for parking garages |
driveSpeed | Keep low (10-20 km/h) — the AI driving native struggles with tight spaces fast |
arrivalThreshold | 3-5 m — too low and the AI never reaches snap distance, too high and the snap is jarring |
precisionSnap | Leave true for clean placement — disable only if you want fully physical parking |
hologramAlpha | 150 is balanced; bump to 200 in low-light environments for better visibility |
stuckTimeout | 15 s is reasonable. Lower to 10 if your players are impatient, raise to 30 in tight spaces |
Permissions
See Permission System.
Module Toggle
| Option | Default | Description |
|---|---|---|
Config.Modules.AutoPark | true | Show auto park module |
Config.AutoPark.enabled | true | Same toggle (deeper level) |
Config.DockButtons.autoPark | true | Show auto park dock button |
