-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUI_Config.json
More file actions
65 lines (65 loc) · 1.94 KB
/
UI_Config.json
File metadata and controls
65 lines (65 loc) · 1.94 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
{
"output_file": "settings.json",
"PlayNewChatterSound": {
"type": "checkbox",
"value": false,
"label": "Play New Chatter Sound",
"tooltip": "Whether or not to play a sound when a new chatter joins the stream.",
"group": "Audio"
},
"NewChatterSoundLocation": {
"type": "textbox",
"value": "./Services/Scripts/NewChatter/newchatter.mp3",
"label": "New Chatter Sound Location",
"tooltip": "The file location of the sound to play when a new chatter joins the stream.",
"group": "Audio"
},
"Volume": {
"type": "slider",
"label": "Volume",
"value": 50,
"min": 1,
"max": 100,
"ticks": 1,
"tooltip": "Volume for new chatter sound.",
"group": "Audio"
},
"TestSound": {
"type": "button",
"label": "Test Sound (Save First)",
"tooltip": "Test sound & volume!\r\nMust save settings first!",
"function": "BtnTestSound",
"wsevent": "",
"group": "Audio"
},
"SendNewChatterMessage": {
"type": "checkbox",
"value": false,
"label": "Reply to New Chatter",
"tooltip": "Use the message above to send a message to the new chatter.",
"group": "Message"
},
"NewChatterMessage": {
"type": "textbox",
"value": "Welcome to the stream {0}! <3",
"label": "Message",
"tooltip": "Message to send, if left blank this message will not be sent! \r\n{0} = Username",
"group": "Message"
},
"BtnResetUserFile": {
"type": "button",
"label": "Reset User File",
"tooltip": "Resets the list of users who have chatted in this stream. \r\nUser file is reset every time the chatbot is opened.",
"function": "BtnResetUserList",
"wsevent": "",
"group": ""
},
"BtnDefaults": {
"type": "button",
"label": "Restore Default Settings",
"tooltip": "Reset settings back to defaults.\r\nReload Scripts afterwards to see the changes in the user interface!",
"function": "BtnResetDefaults",
"wsevent": "",
"group": ""
}
}