- xs <576px
- iPhone X Vertical
- iPhone 8 Vertical
- sm ≥576px
- iPhone 8 Horizontal
- md ≥768px
- iPhone X Horizontal
- iPad Vertical
- lg ≥992px
- iPad Horizontal
This file contains hidden or 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
| # A command to check permissions along with an attempt to timeout users posting links which may not work well | |
| OnCommand e 0 !checkpermissions | |
| Eval "(function() { var d = [data]; var flags = d['flags']; return {broadcaster: flags['broadcaster'], founder: flags['founder'], mod: flags['mod'], vip: flags['vip'], sub: flags['subscriber']};}())" | |
| Chat Send "Is Broadcaster: {broadcaster}, Is Mod: {mod}, Is VIP: {vip}, Is Subscriber: {sub}" | |
| # Untested at scale! | |
| OnEveryChatMessage | |
| If {user} != "[BOTNAME]" | |
| Eval "(function() { var d = [data]; var flags = d['flags']; return {broadcaster: flags['broadcaster'], mod: flags['mod'], vip: flags['vip'], sub: flags['subscriber']};}())" | |
| If {broadcaster} != true and {mod} != true and {vip} != true and {sub} != true |
This file contains hidden or 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
| # Creates a multi.raredrop.co multi stream link. Replace YOURNAMEHERE with your channel name. Does not persist beyond a reload. | |
| # !multi -> Shows the multi link if it exists | |
| # ?makemulti [channels] -> Creates the multi replacing any channels already stored. Add one or more channels with spaces in between. | |
| # ?addmulti [channel] -> Adds a single channel to the multi. Validates the channel exists against DECAPI. | |
| # ?resetmulti -> Clears out any existing multi channels. | |
| OnCommand mb 0 ?makemulti | |
| If 2 {after} = "" | |
| Chat Send "ItsBoshyTime Usage: ?makemulti [channel] [channel]..." | |
| Exit |
This file contains hidden or 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
| OnInit | |
| Random 'Chat Send "KC Reloaded!"' 'Chat Send "KC Reloadified!"' 'Chat Send "Kruiz Control at your service!"' | |
| OnCommand b 0 ?kcreload | |
| Chat Send "Requesting reload..." | |
| Reset |
This file contains hidden or 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
| OnCommand e 0 !checkpermissions | |
| Eval "(function() { var d = [data]; var flags = d['flags']; return {broadcaster: flags['broadcaster'], founder: flags['founder'], mod: flags['mod'], vip: flags['vip'], sub: flags['subscriber']};}())" | |
| Chat Send "Is Broadcaster: {broadcaster}, Is Mod: {mod}, Is VIP: {vip}, Is Subscriber: {sub}" |