Advertisement
illpastethat

YouTube Script (Search/Parse Triggers) [Private GanjaI

Sep 4th, 2012
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
mIRC 0.62 KB | None | 0 0
  1. on *:text:!parse*:#: {
  2.   if (($2 != on) && ($2 != off)) {
  3.     msg $chan Parsing is $group(#parse)
  4.   }
  5.   else {
  6.     if ($2 == on) {
  7.       enable #parse
  8.       msg $chan Parsing is $group(#parse)
  9.     }
  10.     elseif ($2 == off) {
  11.       disable #parse
  12.       msg $chan Parsing is $group(#parse)
  13.     }
  14.   }
  15. }
  16. on *:text:!search*:#: {
  17.   if (($2 != on) && ($2 != off)) {
  18.     msg $chan Searching is $group(#search)
  19.   }
  20.   else {
  21.     if ($2 == on) {
  22.       enable #search
  23.       msg $chan Searching is $group(#search)
  24.     }
  25.     elseif ($2 == off) {
  26.       disable #search
  27.       msg $chan Searching is $group(#search)
  28.     }
  29.   }
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement