-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUI_Config.json
More file actions
106 lines (106 loc) · 2.58 KB
/
UI_Config.json
File metadata and controls
106 lines (106 loc) · 2.58 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
{
"output_file": "settings.json",
"PayoutInterval": {
"type": "slider",
"value": 10,
"min": 1,
"max": 15,
"ticks": 1,
"label": "Payout Every (Minutes)",
"tooltip": "The interval in minutes in which active viewer's receive points.",
"group": "Main Settings"
},
"PayoutAmount": {
"type": "slider",
"value": 1,
"min": 1,
"max": 100,
"ticks": 1,
"label": "Payout Amount (Points)",
"tooltip": "The amount of points a viewer receives on every payout interval.",
"group": "Main Settings"
},
"OpenWebsite": {
"type": "button",
"label": "Open Website",
"tooltip": "Opens the github page.",
"function": "openWebsite",
"wsevent": "",
"group": "Main Settings"
},
"DecayActive": {
"type": "checkbox",
"label": "Point Decay",
"value": 1,
"tooltip": "Inactive viewers lose points after some time.",
"group": "Decay Settings"
},
"DecayViewerAmount": {
"type": "dropdown",
"label": "The",
"value": "Top 10",
"tooltip": "The amount of top viewers affected by the decay.",
"items": [
"Top 5",
"Top 10",
"Top 25",
"Top 50"
],
"group": "Decay Settings"
},
"DecayCooldown": {
"type": "slider",
"value": 8,
"min": 1,
"max": 25,
"ticks": 1,
"label": "Starts Losing Points After (Hours)",
"tooltip": "Streamtime since the last chat activity after a viewer loses points.",
"group": "Decay Settings"
},
"DecayInterval": {
"type": "slider",
"value": 8,
"min": 1,
"max": 25,
"ticks": 1,
"label": "Then Loses Points Every (Hours)",
"tooltip": "Streamtime after which a viewers loses points again.",
"group": "Decay Settings"
},
"DecayFixed": {
"type": "dropdown",
"label": "Decay Type",
"value": "Stacking",
"tooltip": "Fixed: a viewer loses a fixed amount on each decay.\nStacking: a viewer loses 1% more than on the last decay.",
"items": [
"Stacking",
"Fixed"
],
"group": "Decay Settings"
},
"DecayAmount": {
"type": "slider",
"value": 1,
"min": 1,
"max": 5,
"ticks": 1,
"label": "Decay Amount (%) - Fixed Mode Only",
"tooltip": "The amount of points a viewers loses in percent.",
"group": "Decay Settings"
},
"AnnouncePayout": {
"type": "checkbox",
"label": "Announce Payout In Chat",
"value": true,
"tooltip": "Sends a chatmessage about the payout.",
"group": "Message Settings"
},
"AnnounceDiscord": {
"type": "checkbox",
"label": "Send Score Summary To Discord",
"value": true,
"tooltip": "Announces the score summary in discord after the script gets closed.",
"group": "Message Settings"
}
}