Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ;; join the channel
- on *:START:{
- server -m 199.9.250.239 -z -i banhammer_bot
- }
- ;; detect whether the bot joined it's monitoring channel, if so, enable twitchclient 3 chat debug.
- on me:*:join:#lotsofs: {
- if ($me != banhammer_bot) { return }
- raw twitchclient 3
- }
- ;; notify of a ban message
- on *:TEXT:CLEARCHAT*:*: {
- if (($nick == jtv) || ($nick == lotsofs)) {
- if ($me != banhammer_bot) { return }
- msg #lotsofs Notification: $2
- }
- }
- ;; notify of a subscription message
- on *:TEXT:* just subscribed!:*: {
- if (($nick == twitchnotify) || ($nick == lotsofs)) {
- if ($me != banhammer_bot) { return }
- msg #lotsofs New Subscriber: $1
- }
- }
- ;; don't display any other useless chat debug messages (not only applies to banhammer_bot)
- on ^*:TEXT:USERCOLOR*:*: { if ($nick == jtv) { halt } }
- on ^*:TEXT:SPECIALUSER*:*: { if ($nick == jtv) { halt } }
- on ^*:TEXT:HISTORYEND*:*: { if ($nick == jtv) { halt } }
- on ^*:TEXT:EMOTESET*:*: { if ($nick == jtv) { halt } }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement