-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.lua
More file actions
21 lines (18 loc) · 767 Bytes
/
config.lua
File metadata and controls
21 lines (18 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
return {
-- --- Expiry cron ---------------------------------------------------------
-- How often to check for and remove expired props.
-- Uses standard cron syntax.
-- Examples: '*/5 * * * *' = every 5 minutes, '*/1 * * * *' = every minute
expiryCron = '*/5 * * * *',
-- --- Permission levels ----------------------------------------------------
-- Levels are cumulative - each level includes all levels below it.
-- 1 (toggleGroups) – enable / disable prop groups
-- 2 (manage) – add, move and delete props; view the map
-- 3 (playerAccess) – view and edit the player access list
ace = {
[1] = 'mod',
[2] = 'admin',
[3] = 'superadmin',
},
command = 'manage_props'
}