Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 20th, 2012  |  syntax: None  |  size: 2.27 KB  |  hits: 29  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. on *:TEXT:!addid*:#: {
  2.   if ($chan != #zchan) && (%idsm == on) {
  3.     tokenize 32 $strip($1-)
  4.     if ($2 isnum) {
  5.       msg #Zchan !addid $nick $2
  6.       msg #zchan ID from CHAN4( $+ $chan $+ ) 1NICK4( $+ $nick $+ )
  7.     }
  8.     else {
  9.       msg #zchan !addid $2 $3
  10.       msg #zchan ID from CHAN4( $+ $chan $+ ) 1NICK4( $+ $nick $+ )
  11.     }
  12.   }
  13. }
  14. on *:TEXT:*ID is*:#: {
  15.   if (%idsm == on) {
  16.     if ($nick == Dinky) || ($nick == Caspeh) || ($nick == Hot_Bot) || ($nick == MzBot) || ($nick == xSFBot) {
  17.       tokenize 32 $remove($1-,[,])
  18.       tokenize 32 $remove($1-,'s)
  19.       tokenize 32 $remove($1-,.)
  20.       tokenize 32 $strip($1-)
  21.       msg #Zchan !addid $1 $4
  22.       msg #zchan ID from CHAN4( $+ $chan $+ ) 1BOT4( $+ $nick $+ )
  23.     }
  24.   }
  25. }
  26. on *:TEXT:*is*[*]*:#: {
  27.   if ($1 != kushman) || ($1 != kush|away) && (%idsm == on) {
  28.     if ($chan == #giveaway) || ($chan == #duckpond) {
  29.       tokenize 32 $remove($1-,[,])
  30.       tokenize 32 $remove($1-,.)
  31.       tokenize 32 $remove($1-,'s)
  32.       tokenize 32 $strip($1-)
  33.       msg #zchan !addid $1 $4
  34.       msg #zchan !addid $3 $4
  35.       msg #zchan ID from CHAN4( $+ $chan $+ ) 1BOT4( $+ $nick $+ )
  36.     }
  37.   }
  38. }
  39. on *:TEXT:*pushed*the hardest on the swing and won the*:#playground: {
  40.   if (%idsm == on) {
  41.     tokenize 32 $strip($1-)
  42.     msg #zchan !addid $1 $2
  43.     msg #zchan ID from CHAN4( $+ $chan $+ ) 1BOT4( $+ $nick $+ )
  44.   }
  45. }
  46. on *:ACTION:*is*[*]*:#: {
  47.   if ($1 != kushman) || ($1 != kush|away) && (%idsm == on) {
  48.     if ($chan == #drugden) {
  49.       tokenize 32 $remove($1-,[,])
  50.       tokenize 32 $remove($1-,.)
  51.       tokenize 32 $remove($1-,'s)
  52.       tokenize 32 $strip($1-)
  53.       msg #zchan !addid $1 $4
  54.       msg #zchan !addid $3 $4
  55.       msg #zchan ID from CHAN4( $+ $chan $+ ) 1BOT4( $+ $nick $+ ))
  56.     }
  57.   }
  58. }
  59. alias /idsm {
  60.   if (on == $1) {
  61.     set %idsm on
  62.     msg #zchan 9ID Streaming has been turned on
  63.     .timer 1 1 topic #zchan 14,8C8,1A14,8U8,1T14,8I8,1O14,8N0,4 ALOT OF SPAMMING - ID streaming in progress 14,8C8,1A14,8U8,1T14,8I8,1O14,8N
  64.   }
  65.   if (off == $1) {
  66.     set %idsm off
  67.     msg #zchan 9ID streaming has been turned off
  68.     topic #zchan ID streaming and other various bot stuff is done here.4(ID streaming is currently off)
  69.   }
  70. }