-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.lua
More file actions
36 lines (30 loc) · 1.04 KB
/
config.lua
File metadata and controls
36 lines (30 loc) · 1.04 KB
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
30
31
32
33
34
35
36
Config = {}
Config.GuildID = "1394761403184709713"
Config.Token = GetConvar("sd_playergroups:token", "")
Config.Enabled = true
Config.ReloadCommand = "reloadplayergroups"
Config.Roles = {
Groups = {
-- admin
["1333164464803020891"] = "admin", -- Project Owner
["1333440067330641980"] = "admin", -- Management
["1333440253381316660"] = "admin", -- Community Management
-- senior
["1350855420583088158"] = "senior", -- Dev Management
["1333462812445380660"] = "senior", -- Senior Developer
["1333463681144459295"] = "senior", -- Senior Staff
-- staff
["1333440608437534720"] = "staff", -- Developer
["1333464160729825321"] = "staff", -- Junior Developer
["1333463835322875914"] = "staff", -- Staff
["1347719032182276206"] = "staff", -- Junior Staff
-- trial
["1333463908308226100"] = "trial", -- Trial Staff
},
Priorities = {
["admin"] = 100,
["senior"] = 30,
["staff"] = 20,
["trial"] = 10,
}
}