This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Twitch chat browsersource CSS for OBS | |
Just set the URL as https://www.twitch.tv/%%TWITCHCHANNEL%%/chat?popout=true | |
And paste this entire file into the CSS box | |
Original by twitch.tv/starvingpoet, github.com/Bluscream, modified once | |
more by twitch.tv/parkcity_gaming (github.com/parkcitymedia) | |
todo: right align the stuff |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Purpose: Allows you to automatically fill in macro variables, from chat or from another macro. | |
// Usage: #MacroName(param1,param2) | |
// Do NOT include a space after MacroName and before the (. If you do that, Roll20 intercepts it | |
// before sending it to the chat, and there's nothing I can do to help you. :) | |
var parm_macro_params = parm_macro_params || {}; | |
// Interrupts all chat messages to check for macros. | |
on("chat:message", function(msg) |