Name of chan in the background
Platform: mIRC
Published Aug 24, 2011
Updated Aug 24, 2011
When I search into our friend Google I found a snippet :
When you join a channel the snippet will make a background with name of that chan automaticly,
You should first creat a folder with name "image" from the folder mIRC then put this snippet into your mIRC (Alt+R)
I'm not the owner of this snippet
This is the source :
http://www.ircfr.com/codes/NOM-PV-SALON-BACKGROUND_14485.aspx
alias backnick {
/.window -ph @ $+ $1 0 0 $calc($width($1,arial,50) +20 ) $calc($height($1,arial,50) +50 )
/.drawtext -r @ $+ $1 $rgb(179,217,255) arial 50 5 5 $1
/.drawsave @ $+ $1 images\ $+ $replace($1,$chr(124),$chr(44)) $+ .bmp
/.window -C @ $+ $1
/.background -c $1 images\ $+ $replace($1,$chr(124),$chr(44)) $+ .bmp
/.remove images\ $+ $replace($1,$chr(124),$chr(44)) $+ .bmp
}
on *:join:#:{
if ( $nick == $me ) {
backnick $chan
}
}
on *:open:?:*:{
backnick $nick
}
on *:nick:{
if ( $window($newnick) != $null ) {
backnick $newnick
}
}
alias bquery {
query $1
backnick $1
}