Code: Select all
bind pub - !stats stats_pub
proc stats_pub {nick host handle chan args} {
putserv "PRIVMSG $chan :Channel $chan stats are http://www.hot.ee/cyberstats "
}
Code: Select all
bind pub - !stats stats_pub
proc stats_pub {nick host handle chan args} {
putserv "PRIVMSG $chan :Channel $chan stats are http://www.hot.ee/cyberstats "
}
Code: Select all
set stats_chan "#tade"
bind pub - !stats stats_pub
proc stats_pub {nick host handle chan args} {
if {$chan == $::stats_chan} {
putserv "PRIVMSG $chan :$nick: you can find $chan channel's stats at http://www.hot.ee/cyberstats"
}
}