Hello i want a script for eggdrop
i have it for mIRC but i want it for eggdrop
mIRC:
on *:text:!voiced:#:/msg $chan $pusers(v):pcb Voiced users at $chan
thank you
example
* <nick1> !voiced
* <nick2> 166 Voiced users at #channel
bind pub - !voiced voiced
proc voiced {nick uhost hand chan arg} {
set i 0
foreach n [chanlist $chan] {
if {[isvoice $n $chan]} { incr i }
}
puthelp "privmsg $chan :$i voiced people on $chan."
}
Last edited by Sir_Fz on Wed Apr 19, 2006 5:58 pm, edited 1 time in total.