-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUI_Config.json
More file actions
151 lines (151 loc) · 4.52 KB
/
UI_Config.json
File metadata and controls
151 lines (151 loc) · 4.52 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"output_file":"counterSettings.json",
"use_cd":{
"type":"checkbox",
"value":true,
"label":"Use Cooldown Manager",
"tooltip":"use cooldowns or not",
"group":"Show Counter"
},
"show_cd":{
"type":"numberbox",
"label":"Show Cooldown(seconds)",
"value": 15,
"tooltip":"Cooldown in seconds to show counter value",
"group":"Show Counter"
},
"individual_cd":{
"type":"checkbox",
"value":false,
"label": "User Cooldown",
"tooltip": "use user cooldown instead global",
"group":"Show Counter"
},
"set_cd":{
"type":"numberbox",
"label":"Set Cooldown (seconds)",
"value": 5,
"tooltip":"prevent different persons form adding at same time",
"group":"Change Counter"
},
"allow_user_change_toggle":{
"type":"checkbox",
"tooltip":"Enable toggle to allow regulars to change counters",
"label":"Enable user change toggle",
"value": true,
"group":"Change Counter"
},
"toggle_to":{
"type":"dropdown",
"label":"toggle to",
"value":"Regular",
"items":["Regular", "Everyone", "Subscriber", "Min_Points", "Min_Rank", "Min_Hours", "User_Specific"],
"group":"Change Counter",
"tooltip":"global permission toggle non-mod option"
},
"toggle_to_info":{
"type":"textbox",
"label":"permission extra info",
"tooltip":"value specification when 'toggle to' is on MP, MR, MH or US",
"group":"Change Counter",
"value":""
},
"addCommand":{
"type":"textbox",
"label":"addCounter",
"tooltip":"command to be typed, this has to start with a '!'",
"group":"Command Names",
"value":"!addCounter"
},
"removeCommand":{
"type":"textbox",
"label":"removeCounter",
"tooltip":"command to be typed, this has to start with a '!'",
"group":"Command Names",
"value":"!removeCounter"
},
"editCommand":{
"type":"textbox",
"label":"editCounter",
"tooltip":"command to be typed, this has to start with a '!'",
"group":"Command Names",
"value":"!editCounter"
},
"addPermission":{
"type":"textbox",
"label":"addCounterPermission",
"tooltip":"command to be typed, this has to start with a '!'",
"group":"Command Names",
"value":"!addCounterPermission"
},
"removePermission":{
"type":"textbox",
"label":"removeCounterPermission",
"tooltip":"command to be typed, this has to start with a '!'",
"group":"Command Names",
"value":"!removeCounterPermission"
},
"getPermission":{
"type":"textbox",
"label":"counterPermission",
"tooltip":"command to be typed, this has to start with a '!'",
"group":"Command Names",
"value":"!counterPermission"
},
"getUserChangePermissionGlobal":{
"type":"textbox",
"label":"global counterPermissions",
"tooltip":"command to be typed, this has to start with a '!'",
"group":"Command Names",
"value":"!counterPermissions"
},
"toggleUserChangeGlobal":{
"type":"textbox",
"label":"global toggleCounterPermissions",
"tooltip":"command to be typed, this has to start with a '!'",
"group":"Command Names",
"value":"!toggleCounterPermissions"
},
"countersCommand":{
"type":"textbox",
"label":"get all existing counters",
"tooltip":"command to be typed, this has to start with a '!'",
"group":"Command Names",
"value":"!counters"
},
"default_counter_message":{
"type":"textbox",
"label":"default_counter_message",
"tooltip":"the default message displayed when showing a counter",
"group":"Responses",
"value":"current {0} count is {1}"
},
"global_permission_toggle_message":{
"type":"textbox",
"label":"global_permission_toggle",
"tooltip":"the message displayed when toggling global permissions",
"group":"Responses",
"value":"the global permission to change counters has been set to {1}, {2}"
},
"on_global_permission_message":{
"type":"textbox",
"label":"on_global_permission",
"tooltip":"the message displayed when on global permission",
"group":"Responses",
"value":"the counter {0} is on the global permission"
},
"specific_permission_message":{
"type":"textbox",
"label":"specific_permission",
"tooltip":"the message displayed when on a specific permission",
"group":"Responses",
"value":"{0} counter's permission is {1}, {2}"
},
"counter_not_exist":{
"type":"textbox",
"label":"counter_not_exists",
"tooltip":"the message displayed when modifying non existing counter (mod commands only)",
"group":"Responses",
"value":"{0} counter does not exist"
}
}