Twitch bot disconnect script

on ^*:text:!disconnect:#:{
  if ($nick isop $chan) { 
    msg $chan Goodbye everyone! I have been asked to disconnect! 
    disconnect
  }
  else { 
    if (!%no.spam) { 
      msg $chan Sorry but you cannot use this command! 
      set -u10 %no.spam derp
    }
  }
}

There you go. I’ve added a 10 seconds spam protection too.

1 Like