-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmod.json
More file actions
121 lines (121 loc) · 3.14 KB
/
mod.json
File metadata and controls
121 lines (121 loc) · 3.14 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"geode": "5.0.0-beta.2",
"gd": {
"win": "2.2081",
"android": "2.2081",
"mac": "2.2081",
"ios": "2.2081"
},
"id": "arcticwoof.servers_status",
"name": "Servers Status",
"version": "v1.0.8",
"developer": "ArcticWoof",
"links": {
"source": "https://github.com/DumbCaveSpider/ServersStatus",
"homepage": "https://arcticwoof.com.au/",
"community": "https://discord.com/gXcppxTNxC"
},
"description": "Display the server connections in game",
"tags": ["universal", "utility"],
"resources": {
"sprites": [
"resources/*"
]
},
"settings": {
"enabled": {
"type": "bool",
"name": "Enable Icon Status",
"description": "Enable or disable the icon status",
"default": true
},
"disableInLevel": {
"type": "bool",
"name": "Disable In-Level",
"description": "Disable the icon status when in a level",
"default": false
},
"title": {
"type": "title",
"name": "Icon Visual Settings"
},
"opacity": {
"type": "int",
"name": "Icon Opacity",
"description": "Set the opacity of the icon status",
"default": 100,
"min": 10,
"max": 255
},
"scale": {
"type": "float",
"name": "Icon Scale",
"description": "Set the scale of the icon status",
"default": 0.4,
"min": 0.1,
"max": 2.0
},
"padding": {
"type": "float",
"name": "Icon Padding",
"description": "Set the padding of the icon status from the screen edges",
"default": 0,
"min": 0,
"max": 500
},
"position": {
"type": "string",
"name": "Icon Position",
"description": "Set the position of the icon status",
"default": "Top Right",
"one-of": [
"Top Right",
"Top Left",
"Bottom Right",
"Bottom Left"
]
},
"title2": {
"type": "title",
"name": "Web Request Settings"
},
"internet_url": {
"type": "string",
"name": "Internet Check URL",
"description": "Set the URL to check for internet connectivity. Can be anything that isn't blocked by your country.",
"match": "(http|https):\\/\\/([\\w_-]+(?:(?:\\.[\\w_-]+)+))([\\w.,@?^=%&:\\/~+#-]*[\\w@?^=%&\\/~+#-])",
"filter": "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ:.-_/0123456789",
"default": "https://www.google.com"
},
"refresh_rate": {
"type": "float",
"name": "Refresh Rate",
"description": "Set how often (in seconds) the status should refresh. <cy>Restart required.</cy> <cr>Lower the value, the more often it checks and may cause you to get rate limited!",
"default": 60.0,
"min": 1.0,
"max": 360.0,
"control": {
"slider": true,
"slider-step": 1.0,
"arrows": true,
"arrow-step": 1.0
}
},
"notification":{
"type": "bool",
"name": "Enable Notifications",
"description": "Enable or disable notifications whenever a server goes offline",
"default": true
},
"doWeHaveInternet": {
"type": "bool",
"name": "Use Internal Internet Check",
"description": "Use <cy>GameToolbox::doWeHaveInternet()</c> function to check for internet connectivity instead of a web request. <cg>Intended for mobile devices. Reliable but annoying with the 'No Internet Connection error' popup.</cg>",
"default": false,
"platforms": [
"android",
"ios"
]
}
}
}