Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. alias lockdown {
  2. if (%lockdn == 1) { echo -a 3The lockdown is no longer in effect. | unset %lockdn }
  3. else { set %lockdn 1 | echo -a 4The network is now in lockdown. To end the lockdown retype this command. }
  4. }
  5.  
  6. on *:SNOTICE: {
  7. if ($5 == connecting && %lockdn == 1) { kill $9 A lockdown is currently in effect on the IRC network; we are not accepting any new connections. }
  8. else { }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement