Top

[YTKicker] YouTube Kicker


mIRC Code
+ 0 likes
Please Register to submit score.
Bookmark and Share
Average Score  0.0 (of 0 scores)
Date Added  Jun 29, 2009
Last Updated  Jun 29, 2009
Tags  dj801  er  irc  kick  kicker  mirc  tube  you  youtube  yt  ytkicker 

Introduction

YTKicker is a script i made that kicks ppl if they post YT links if they are OP+ it wont kick them. when ppl post a yt link and get kick or if a op+ posts one YTKicker will log it to ytkicker_log.txt

Grab the Code

;;;;;;;;;;;;;;;;;;;;;;;;;;;
;                         ;
;        [YTKicker]       ;
;         By Dj 801       ;
;                         ;
; irc.techtoknow.net:6667 ;
;        #dj801           ;
;                         ;
;;;;;;;;;;;;;;;;;;;;;;;;;;;
on *:LOAD: {
  write ytkicker_log.txt [YTKicker] $date $asctime(h:nn:ss tt) Version 1.1 Loaded
  echo 3* [YTKicker] Version 1.1 Loaded
}
on *:TEXT:*youtube*c*:#: {
  if ($nick isop $chan) {
    echo 3* [YTKicker] $nick posted a YouTube link in #dj801 at $date $asctime(h:nn:ss tt) but wasnt kick cuz he was Op for higher
    write ytkicker_log.txt [YTKicker] $nick posted a YouTube link in #dj801 at $date $asctime(h:nn:ss tt) but wasnt kick cuz he was Op for higher
    halt
  }
  if esle {
    msg $chan STFU no one will go to your youtube
    msg $chan bye, bye retarded $nick
    kick $chan $nick $nick was Owned on $asctime(h:nn:ss tt) at $date on the channel $chan for posting a youtube link
    echo 3* [YTKicker] $nick got Owned in #dj801 at $date $asctime(h:nn:ss tt) for posting a youtube link
    write ytkicker_log.txt [YTKicker] $nick got Owned in #dj801 at $date $asctime(h:nn:ss tt) for posting a youtube link
  }
}

Comments

  (3)  RSS
Jethro_
Comments: 405
 
mIRC Snippet:  [YTKicker] YouTube Kicker
Posted on Jun 30, 2009 1:09 am
Your script can further be improved. The major problem is that if I say,"YouTube comes to Wii and PS3 for TV Viewing," I will be kicked. And what is "if esle {?" You meant it as just else then?
jonesy44
Comments: 1,853
 
mIRC Snippet:  [YTKicker] YouTube Kicker
Posted on Jul 2, 2009 1:43 pm
Code:
on $*:text:/http:\/\/(www.)?youtube.*\/watch\?v=.{11}&?.*/Si:#:
  if ($nick !isop #) kick # $nick $nick Don't post YouTube links
  write ytkicker_log.txt [YTKicker] $nick posted a youtube link in # at $fulldate
}
Jethro_
Comments: 405
 
mIRC Snippet:  [YTKicker] YouTube Kicker
Posted on Jul 2, 2009 2:08 pm
Nice, jonesy44. I like your method better.

Commenting Options

Register or Login to Hawkee.com or use your Facebook or Twitter account by clicking the corresponding button below.

  
Bottom