Advertisement
Guest User

Untitled

a guest
Aug 25th, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. ; =======Elysium - SplitBot Administrator 7=======
  2. ; =
  3. ; = auditorium.ini (Elysium Module - Optional)
  4. ; = Updates nickname list when opped/voiced on a channel with
  5. ; = auditorium (+A) mode set. (DALnet)
  6. ; =
  7. ; ================================================
  8.  
  9. ; --EVENTS----------------------------------------
  10.  
  11. on *:voice:#:{
  12. if (A isincs $chan(#).mode) && ($vnick == $me) {
  13. .enable #auditorium.names
  14. echo -at * You have been voiced on +A channel # $+ , refreshing nick list
  15. names #
  16. }
  17. }
  18.  
  19. on *:op:#:{
  20. if (A isincs $chan(#).mode) && ($opnick == $me) {
  21. .enable #auditorium.names
  22. echo -at * You have been opped on +A channel # $+ , refreshing nick list
  23. names #
  24. }
  25. }
  26.  
  27. #auditorium.names off
  28. raw 353:*:halt
  29. raw 366:*:.disable #auditorium.names | halt
  30. #auditorium.names end
  31. ; ------------------------------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement