-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.toml
59 lines (43 loc) · 1.65 KB
/
config.toml
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# RENAME THIS FILE TO config.toml AND THEN MAKE THE EDITS
# You MUST restart the webserver after making any changes to this file otherwise bad stuff will happen
[global]
### SimpleAdmin ###
# https://github.com/LoV432/cs2-dashboard/blob/master/SimpleAdmin.md
simpleAdmin = false
preDefinedMaps = [['de_mirage', 'Mirage'], ['de_dust2', 'Dust 2']] # Optional
### VipCore ###
# https://github.com/LoV432/cs2-dashboard/blob/master/VipCore.md
vipCore = false
### ChatLogger ###
# https://github.com/LoV432/cs2-dashboard/blob/master/ChatLogger.md
chatLogger = false
chatLoggerToken = 'VerySecureTokenHere'
### MySQL ###
# This is only required if you have enabled any of the above plugins
mysqlHost = 'localhost'
mysqlPort = 3306
mysqlUser = 'user'
mysqlDatabase = 'db_name'
mysqlPassword = 'password'
[[servers]]
serverName = 'Good Name'
serverIp = '127.0.0.1'
serverPort = 27015
rconPort = 27015
rconPassword = 'password'
# https://github.com/LoV432/cs2-dashboard/blob/master/SimpleAdmin.md
simpleAdminId = 36 # Required if simpleAdmin = true. You can find this value in the database under sa_servers table
preDefinedMaps = [['ws:fy_pool_day','Pool Day']] # Optional
# https://github.com/LoV432/cs2-dashboard/blob/master/VipCore.md
vipCoreId = 0 # required if vipCore = true. You can find this value in your "vip_core.json" file in your plugin config folder
# https://github.com/LoV432/cs2-dashboard/blob/master/ChatLogger.md
chatLoggerId = 1 # The "server_id" value you are using in your discord webhook url
[[servers]]
serverName = 'Great Name'
serverIp = '127.0.0.2'
serverPort = 27014
rconPort = 27014
rconPassword = 'password'
simpleAdminId = 59
vipCoreId = 1
chatLoggerId = 2