· 7 years ago · May 13, 2018, 02:58 PM
1#-------------------------------------------------------#
2# Twitch Typer v1.0 (13/May/2018) #
3# © Tore 'pr0te' Lehmann @ www.twitch.tv/torelehmann #
4# #
5# Configuration file #
6# #
7# WARNING: DO NOT EDIT ON STREAM!!! #
8# YOUR OAUTH TOKEN AND CLIENT ID WILL BE VISIBLE!!! #
9#-------------------------------------------------------#
10
11# --- [INITIAL SETUP] ---
12
13# The name of your channel, where you want to read twitch chat from (in lower case!)
14your-channel-name:
15
16# The name of the user/bot that you want to login to your chat with to listen to chat messages
17your-user-name:
18
19# Twitch requires a "client id" in order to use their API
20# You must go to https://glass.twitch.tv/ and sign up/login with Twitch
21# Then go to Dashboard and "Register Your Application". Give it a name
22# At "Redirect URL" type: https://localhost
23# Select a category and hit "Create". Under "Apps" on your dashboard, click
24# "Manage" on your app. There you will find the Client ID
25# Example value: abcdefghijklmnopqrstuvwxyz1234
26client-id:
27
28# Go to this link and sign in as your bot account: https://twitchapps.com/tmi/
29# Example value: oauth:abcdefghijklmnopqrstuvwxyz1234
30oauth-token:
31
32# --- [PREFERENCES] ---
33
34# The maximum length a chat message can be for it to be accepted in the game
35# Default value: 90
36max-text-characters: 90
37
38# NOTE: The first character is a space!
39# To add more, just add the characters anywhere, but remember the space unless you
40# don't actually want it
41# Default value: !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~
42allowed-characters: !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~
43
44# The cooldown before the same chatter's messages is accepted again
45# to prevent spam/adjust to channels with many chatters
46# Default value: 5
47message-cooldown: 5
48
49# The amount of damage you take from letting a sentence reach the bottom of the screen
50# Your health is equal to 100
51# Default value: 10
52damage-per-hit: 10
53
54# The amount of health you restore for each sentence finished
55# Default value: 2
56health-restored-per-sentence: 2
57
58# The color of the background. Use for example #ff00ff or #00ff00 for chroma key'ing
59# Default value: #000000
60background-color: #000000
61
62# The normal, default color of text in hexadecimal. To find colors in hexadecimal,
63# you can use Google. Search for "color picker" and you will find Google's own
64# tool that you can use
65# Default value: #ffffff
66default-text-color: #ffffff
67
68# The color of the text you're writing when you've made a typo
69# Default value: #ff0000
70typo-text-color: #ff0000
71
72# The color of the text that are to be typed next
73# Default value: #6bcdff
74up-now-text-color: #6bcdff
75
76# The color of the health bar
77# Default value: #ff0000
78healthbar-color: #ff0000
79
80# Enable/disable the use of a background for your health bar (true/false)
81# i.e. the part of it you can see when you've lost some health
82# Default value: false
83healthbar-background-enabled: false
84
85# The color of the health bar's background, if enabled above
86# Default value: #000000
87healthbar-background-color: #000000
88
89# --- [END OF FILE] ---