Chat Bot Settings

Latency Offset
Chat Bot Suppression
Chat Bot Mode
Chat Bot Nudge
Undo Limitation
Responses
This is the timestamp offset that is embedded in Make Echoes. While the default 3 second offset for latency works for most streamers, if you need to adjust it, feel free to do so.
If you post a positive number, the clip will end after the !echo command is received. This is only necessary if there is a sizable latency between your stream and Twitch's servers or if you are pressing something like a Stream Deck which is entering the !echo command in before the event is seen on stream.
{% csrf_token %} {% load widget_tweaks %} {% for field in chatBotSettingsForm.visible_fields %} {{ field.errors }} {{field.label_tag}}
{% render_field field %}
{% endfor %} {% for field in chatBotSettingsForm.hidden_fields %} {{ field }} {% endfor %}
This setting allows you to turn off the @MakeEchoes chat bot from confirming receipt of new clips requested. This can be helpful if you're requesting many clips on each stream and don't care to have your chatroom with the repeated messages from the bot. 

Note: Duplicate clip requests will still produce a response stating that the cool down is still active.
{% csrf_token %} {% load widget_tweaks %} {% for field in chatbotConfirmationSuppression.visible_fields %} {{ field.errors }} {{field.label_tag}} {% render_field field %} {% endfor %} {% for field in chatbotConfirmationSuppression.hidden_fields %} {{ field }} {% endfor %}
This setting allows you to select which chat room users can submit clip requests via the bot. While we recommend that you use the "Streamer, Mods & Approved Users" mode, we do recognize that there are cases when it does not make sense.
In the cases where you want complete control of the clips yourself, you can turn on the Streamer Only. This can be useful in a number of situations including those streams where you do not want to have a recap video generated or one which you know that you want specific content collected and do no want your moderators or approved users submitting it.
{% csrf_token %} {% load widget_tweaks %} {% for field in chatbotMode.visible_fields %} {{ field.errors }} {{field.label_tag}} {% render_field field %} {% endfor %} {% for field in chatbotMode.hidden_fields %} {{ field }} {% endfor %}
This setting is a gentle reminder for you, your mods or approved users to create clips. It is trigged at the interval you specify (in minutes) after either your stream starts or that time since your last clip is made.
How much time would you like to pass before receiving a nudge in your chatroom to remind you, your mods and approved users to create clips:
{% csrf_token %} {% load widget_tweaks %} {% for field in minutes_until_nudge.visible_fields %} {% if field.value != -1 %} {{ field.errors }} {{field.label_tag}} {% render_field field %}
{% else %} {% endif %} {% endfor %} {% for field in minutes_until_nudge.hidden_fields %} {{ field }} {% endfor %}
If you care to be the only person who can remove clips while streaming, you can make that happen by simply checking the box below and submitting the form. This can take 15-30 minutes to take hold in the chatbot so please be a bit patient with it. When enabled, all mods and approved users will not be able to remove clips from the queue.
{% csrf_token %} {% load widget_tweaks %} {% for field in chatbotStreamerUndo.visible_fields %} {{ field.errors }} {{field.label_tag}} {% render_field field %} {% endfor %} {% for field in chatbotStreamerUndo.hidden_fields %} {{ field }} {% endfor %}
This is where you can get creative with the various chat bot responses to fit the style and structure of your room. If you would like to include the requesting user's name, you can do so by including '{{username}}' in the fields below.
{% csrf_token %} {% load widget_tweaks %} {% for field in chatResponsesForm.visible_fields %} {{ field.errors }} {{field.label_tag}}
{% render_field field %}
{% endfor %} {% for field in chatResponsesForm.hidden_fields %} {{ field }} {% endfor %}
undo