-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.servers.json
40 lines (40 loc) · 1.17 KB
/
example.servers.json
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
[
{
"server_url": "https://pufferpanel.example.com/server/30f6e012",
"client_id": "CHANGE ME",
"client_secret": "CHANGE ME",
"command": "status",
"regex": [
"Total Players:\\s*(\\d*)",
"Uptime:\\s*(\\d*)"
],
"embed_template": {
"type": "rich",
"title": "${settings.name.value}",
"description": "${settings.description.value}",
"color": 65535,
"fields": [
{
"name": "Players",
"value": "${regex.0}",
"inline": true
},
{
"name": "Uptime",
"value": "${regex.1}ms",
"inline": true
},
{
"name": "Host",
"value": "${server.node.publicHost}",
"inline": true
}
],
"author": {
"name": "${server.name}",
"url": "${self.server_url}",
"icon_url": "https://beammp.com/img/mainlogo.png"
}
}
}
]