-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathconfig.lua
More file actions
32 lines (24 loc) · 949 Bytes
/
config.lua
File metadata and controls
32 lines (24 loc) · 949 Bytes
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
Config = Config or {}
-- queue debug?
Config.Debug = false
-- this is the identifier which is required to join server
Config.RequiredIdentifiers = { 'license', 'discord' }
-- this identifier will be used to perform actions / store data
Config.Identifier = 'discord'
-- disables hardcap, should keep this true
Config.DisableHardCap = true
-- this makes person wait before even they initialize connection to prevent exploits
Config.AntiSpam = {
enabled = true,
time = 10 * 1000 -- 10 secs
}
-- timeout connection when they cross below time while they try connnecting
Config.Timeout = 300 -- 5 mins (300 secs)
-- server join delay even if slots are free you cannot join server deu to this delay
Config.JoinDelay = 3 * 60 * 1000 -- 3 mins (miliseconds)
-- assign temporary power when someone crashes/reconnects
Config.ReconnectPrio = {
enabled = true,
points = 1000, -- this gets added to existing points
time = 5 -- 5 mins
}