Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.75 KB | None | 0 0
  1. on *:text:*!myc*:#: {
  2. if ($address($nick,2) == *!*@shadowice.users.omerta) {
  3. /notice $nick !clear
  4. /notice $nick !fpart <nick>
  5. /notice $nick !ban <nick>
  6. /notice $nick !unban <nick>
  7. /notice $nick !sop <nick>
  8. /notice $nick !desop <nick>
  9. /notice $nick !akick <nick>
  10. /notice $nick !bkick <nick>
  11. /notice $nick !invite <nick>
  12. /notice $nick !admin <nick>
  13. /notice $nick !delflag <nick>
  14. /notice $nick !op <nick>
  15. /notice $nick !deop <nick>
  16. /notice $nick !hop <nick>
  17. /notice $nick !dehop <nick>
  18. /notice $nick !vop <nick>
  19. /notice $nick !devop <nick>
  20. /notice $nick !kick <nick>
  21. }
  22. }
  23.  
  24. on *:text:*!clear*:#: {
  25. if ($address($nick,2) == *!*@shadowice.users.omerta) {
  26. /msg ChanServ CLEAR $chan USERS
  27. }
  28. }
  29.  
  30. on *:text:*!fpart*:#: {
  31. if ($address($nick,2) == *!*@shadowice.users.omerta) {
  32. /fpart $chan $2
  33. }
  34. }
  35. on *:text:*!kick*:#: {
  36. if ($address($nick,2) == *!*@shadowice.users.omerta) {
  37. /cs kick $chan $2
  38. }
  39. }
  40.  
  41. on *:text:*!akick*:#: {
  42. if ($address($nick,2) == *!*@shadowice.users.omerta) {
  43. /msg ChanServ AKICK $chan ADD $2
  44. }
  45. }
  46. on *:text:*!bkick*:#: {
  47. if ($address($nick,2) == *!*@shadowice.users.omerta) {
  48. /cs AKICK $chan del $2
  49. }
  50. }
  51.  
  52. on *:text:*!ban*:#: {
  53. if ($address($nick,2) == *!*@shadowice.users.omerta) {
  54. /cs ban $chan $2
  55. }
  56. }
  57. on *:text:*!unban*:#: {
  58. if ($address($nick,2) == *!*@shadowice.users.omerta) {
  59. /cs unban $chan $2
  60. }
  61. }
  62.  
  63. on *:text:*!invite*:#: {
  64. if ($address($nick,2) == *!*@shadowice.users.omerta) {
  65. /invite $2 $chan
  66. }
  67. }
  68. on *:text:*!admin*:#: {
  69. if ($address($nick,2) == *!*@shadowice.users.omerta) {
  70. /cs flags $chan $2 +*
  71. }
  72. }
  73. on *:text:*!delflag*:#: {
  74. if ($address($nick,2) == *!*@shadowice.users.omerta) {
  75. /cs flags $chan $2 -*
  76. }
  77. }
  78.  
  79. on *:text:*!sop*:#: {
  80. if ($address($nick,2) == *!*@shadowice.users.omerta) {
  81. /cs sop $chan add $2
  82. }
  83. }
  84. on *:text:*!desop*:#: {
  85. if ($address($nick,2) == *!*@shadowice.users.omerta) {
  86. /cs sop $chan del $2
  87. }
  88. }
  89. on *:text:*!op*:#: {
  90. if ($address($nick,2) == *!*@shadowice.users.omerta) {
  91. /cs aop $chan add $2
  92. }
  93. }
  94. on *:text:*!deop*:#: {
  95. if ($address($nick,2) == *!*@shadowice.users.omerta) {
  96. /cs aop $chan del $2
  97. }
  98. }
  99.  
  100. on *:text:*!hop*:#: {
  101. if ($address($nick,2) == *!*@shadowice.users.omerta) {
  102. /cs hop $chan add $2
  103. }
  104. }
  105. on *:text:*!dehop*:#: {
  106. if ($address($nick,2) == *!*@shadowice.users.omerta) {
  107. /cs hop $chan del $2
  108. }
  109. }
  110. on *:text:*!vop*:#: {
  111. if ($address($nick,2) == *!*@shadowice.users.omerta) {
  112. /cs vop $chan add $2
  113. }
  114. }
  115. on *:text:*!devop*:#: {
  116. if ($address($nick,2) == *!*@shadowice.users.omerta) {
  117. /cs vop $chan del $2
  118. }
  119. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement