Advertisement
bluebird404

TwitchPlaysPokemon - Chat Filter

Feb 19th, 2014
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. In order to get shit done, people need to filter the chat so we can coordinate new plans in it. That's how you filter the commands out of the twitch-chat:
  2.  
  3. (You need to have the livestream open in your browser)
  4. On Firefox, click Firefox -> Web Developer -> Web Console then copy the text below in there and hit enter:
  5.  
  6.  
  7. $("<style type='text/css'>#chat_line_list li{display:none;}</style>").appendTo("head");setInterval(function(){$('#chat_line_list li').each(function(){var a=$(this);var t=$.trim(a.text().split(':')[1]);if(!t.match(/^(up|down|left|right|democracy|anarchy|amarchy|aa|v|s|r|w|s|d|upup|downdown|dowm|start9|left9|right9|down9|up9|a9|b9||a|b|start|select?)$/i)){a.show();}})},50)
  8.  
  9.  
  10. Now most of the commands should be filtered out.
  11.  
  12. This is a updated version of http://pastebin.com/uqsWKHLm
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement