-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
config.lua
29 lines (23 loc) · 806 Bytes
/
config.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
Config = Config or {}
Config.Permissions = {
['fob_racing_basic'] = {
['join'] = true,
['records'] = true,
['setup'] = true,
['create'] = false,
},
['fob_racing_master'] = {
['join'] = true,
['records'] = true,
['setup'] = true,
['create'] = true,
}
}
Config.CheckpointPileModel = `prop_offroad_tyres02`
Config.MinRacerNameLength = 4
Config.MaxRacerNameLength = 24
Config.MinimumCheckpoints = 10 -- Minimum Checkpoints required for a race
Config.MinTireDistance = 2.0 -- Min distance between checkpoint tire piles
Config.MaxTireDistance = 15.0 -- Max distance between checkpoint tire piles
Config.MinTrackNameLength = 8 -- Min track name length to submit
Config.MaxTrackNameLength = 24 -- Max track name length to submit