This repository was archived by the owner on Jun 4, 2025. It is now read-only.
forked from KalinkaGit/vSyncR
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.lua
More file actions
42 lines (36 loc) · 1.87 KB
/
Copy pathconfig.lua
File metadata and controls
42 lines (36 loc) · 1.87 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
37
38
39
40
41
42
Config = {}
Config.AdminByID = false -- Set to true if you want to set the access to the commands only to certain people (otherwise the permissions will be to ace access)
Config.DynamicWeather = true -- Set this to false if you don't want the weather to change automatically every 10 minutes.
-- On server start
Config.StartWeather = 'EXTRASUNNY' -- Default weather default: 'EXTRASUNNY'
Config.BaseTime = 8 -- Time default: 8
Config.TimeOffset = 0 -- Time offset default: 0
Config.FreezeTime = false -- freeze time default: false
Config.Blackout = false -- Set blackout default: false
Config.NewWeatherTimer = 10 -- Time (in minutes) between each weather change default: 10
Config.Locale = 'en' -- Languages : en, fr, pt, tr, pt_br
Config.Admins = { -- Only if Config.AdminByID is set to true
'steam/license:STEAMID/LICENSE', -- EXAMPLE : steam:110000145959807 or license:1234975140128921327
}
Config.Ace = { -- Only if Config.AdminByID is set to false
'command', -- LEAVE BY DEFAULT TO GIVE ACCESS TO ADMINS AND SUPERADMINS IF U DIDN'T TOUCH ADMIN SYSTEM.
--'vsyncr', -- Gives access to weather/time commands only to groups that have access to 'vsyncr' in your server.cfg (like this: add_ace group.admin vsyncr allow)
--'yourgroupaccess', -- add_ace group.yourgroup yourgroupaccess allow
}
Config.AvailableWeatherTypes = { -- DON'T TOUCH EXCEPT IF YOU KNOW WHAT YOU ARE DOING
'EXTRASUNNY',
'CLEAR',
'NEUTRAL',
'SMOG',
'FOGGY',
'OVERCAST',
'CLOUDS',
'CLEARING',
'RAIN',
'THUNDER',
'SNOW',
'BLIZZARD',
'SNOWLIGHT',
'XMAS',
'HALLOWEEN',
}