Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. on 1:TEXT:+m:#:{
  2. if ($nick isop $chan) {
  3. mode $chan +m $2
  4. }
  5. else {
  6. notice $nick Sorry, But only Channel OP can use this command.
  7. }
  8. }
  9. on 1:TEXT:-m:#:{
  10. if ($nick isop $chan) {
  11. mode $chan -m $2
  12. }
  13. else {
  14. notice $nick Sorry, But only Channel OP can use this command.
  15. }
  16. }
  17.  
  18. on 1:TEXT:+i:#:{
  19. if ($nick isop $chan) {
  20. mode $chan +i $2
  21. }
  22. else {
  23. notice $nick Sorry, But only Channel OP can use this command.
  24. }
  25. }
  26. on 1:TEXT:-i:#:{
  27. if ($nick isop $chan) {
  28. mode $chan -i $2
  29. }
  30. else {
  31. notice $nick Sorry, But only Channel OP can use this command.
  32. }
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement