Cheiron`s Ban / Kick logging
Platform: mIRC
Published Nov 16, 2007
Updated Aug 09, 2009
This is a ban and kick logger that utilises seperate windows to show kicks and bans.
very useful if you are in high volume rooms with ops and have alot of kicks and bans.. if you go afk for extended time and come back .. you only need look in say @bans window to see what has happened when and then got to exact time on logs.
this loads up in a fresh new remotes window on your mirc. this was tested on mirc v6.35
when a @bans or @kicks window opens .. click it to view, then right click the tab itself .. @bans or @kicks then goto logging and turn on
then name the file and where it is to log.. and that is it done then :)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Cheiron's Kick and Ban logging system ;
; utilising 2 seperate custom windows ;
; for ease of viewing and log finding ;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;first the event which in this case is an on ban
on *:ban:#:{
;open a new window on mirc. we will call it @bans
window @bans
;now to write the information in that window for easy later viewing using echo
echo -t @bans [ban logger] $nick set the following ban $1- against user $bnick on $time $date in $chan
;close the brackets at the end
}
;same here but this is the kick event
on *:kick:#:{
window @kicks
echo -t @kicks [kick tracker] $nick kicked $knick from $chan on $date at $time
}