The anarchy/democracy spam takes up so much of the chat when we don't have a super focused goal. Holy shit.
Use the scripts in the google doc
To enter any of these scripts, click any of the boxes 3 times to highlight, copy the script (CTRL-C),
open the web console:
Chrome: CTRL + Shift + J
Firefox: CTRL + Shift + K
then paste the script into the box, and then press ENTER.
You can also type javascript: (paste script here) into the URL box, and press ENTER.
NOTE: Will not work for Firefox.
How do I make the commands not display in the twitch chat (so I can actually see the chat)?
var DEMOCRACY_MODE=true;var BLOCKED_WORDS=["left","right","up","down","start","select","a","b","democracy","anarchy"];var ANARCHY_REGEX=new RegExp("^("+BLOCKED_WORDS.join("|")+")$","i");var DEMOCRACY_REGEX=new RegExp("^(("+BLOCKED_WORDS.join("|")+")\\d?)+$","i");var FILTER_REGEX=DEMOCRACY_MODE?DEMOCRACY_REGEX:ANARCHY_REGEX;var CHAT_BUTTON=$("ul.segmented_tabs li a").first();$("<li><a class='CommandsToggle'>Commands</a><a class='ChatToggle'>Talk</a></li>").insertAfter(CHAT_BUTTON);CHAT_BUTTON.css("width",CHAT_BUTTON.width()-71);$(".CommandsToggle").click(function(){"use strict";$("a.CommandsToggle").toggleClass("selected");if($(".commandsHideCSS").length!==0){$(".commandsHideCSS").remove()}else{$("<style type='text/css' class='commandsHideCSS'>#chat_line_list li.cSpam{display:inline;}</style>").appendTo("head")}});$(".ChatToggle").click(function(){"use strict";$("a.ChatToggle").toggleClass("selected");if($(".chatHideCSS").length!==0){$(".chatHideCSS").remove()}else{$("<style type='text/css' class='chatHideCSS'>#chat_line_list li.cSafe{display:inline;}</style>").appendTo("head")}});$(".ChatToggle").click();CurrentChat.line_buffer=800;var extraCSS=" <style type='text/css' > "+" .segmented_tabs li li a.CommandsToggle { "+" width: 50px; "+" padding-left: 0px; "+" padding-top: 0; "+" height: 8px; "+" line-height: 115%; "+" } "+" "+" .segmented_tabs li li a.ChatToggle { "+" width: 35px; "+" padding-left: 15px; "+" padding-top: 0; "+" height: 8px; "+" line-height: 115%; "+" } "+" "+" #chat_line_list li { "+" display:none; "+" } "+" </style> ";$(extraCSS).appendTo("head");setInterval(function(){"use strict";$('#chat_line_list li:not(.cSpam):not(.cSafe)').each(function(){var chatLine=$(this);var chatText=chatLine.find(".chat_line").text();if(chatText&&!chatText.trim().match(FILTER_REGEX)){chatLine.addClass("cSafe")}else{chatLine.addClass("cSpam")}});if(CurrentChat.currently_scrolling){CurrentChat.scroll_chat()}},100);