tcl
namespace eval ::av {
variable salon #tonsalon
variable time 15
variable lignes 5
bind time - "* * * * *" av::Vvoice
proc Vvoice {1 2 3 4 5} {
variable idle
variable salon
variable time
foreach nick [chanlist $salon] {
if {[isbotnick $nick] || [isop $nick $salon]} continue
if [info exists idle($nick)] {
set t1 [lindex $idle($nick) 1]
set t [unixtime]
if {[expr $t-$t1]>[expr $time*60] && [isvoice $nick $salon]} {
pushmode $salon -v $nick
}
if {[expr $t-$t1]>300} {
set idle($nick) "0 $t1"
}
} else {
set idle($nick) "0 [unixtime]"
}
}
flushmode $salon
}
bind pubm - * av::Pvoice
proc Pvoice {nick host hand chan arg} {
variable lignes
variable salon
if {![string equal -nocase $chan $salon] || [isbotnick $nick]} return
variable idle
if ![info exists idle($nick)] {set idle($nick) "1 [unixtime]";return}
set i [lindex $idle($nick) 0]
set idle($nick) "[incr i] [unixtime]"
if {$i>=$lignes} {pushmode $chan +v $nick}
}
bind join - * av::joinC
proc joinC {nick host hand chan} {
variable salon
if {![string equal -nocase $chan $salon] || [isbotnick $nick]} return
variable idle
set idle($nick) "0 [unixtime]"
}
bind nick - * av::chgn
proc chgn {nick host hand chan new} {
variable salon
if {![string equal -nocase $chan $salon] || [isbotnick $nick]} return
variable idle
if ![info exists idle($nick)] {
set idle($new) "0 [unixtime]"
} else {
set idle($new) $idle($nick)
unset idle($nick)
}
}
}