Repositorio de scripts de irc.terrachat.cl desde los canales #TRAFFIC y #LATINWAREZ.
⬅️ Volver,-----------------------------------------------,
| --.-- ,---.| | |
| | ,---.,---.,---.,---.| |---.,---.|--- |
| | |---'| | ,---|| | |,---|| |
| ` `---'` ` `---^`---'` '`---^`---' |
| coded powered by crew: irc.terrachat.cl 2025. |
‘-----------------------------------------------’
# Este script para mIRC muestra estadísticas del canal en el que se ejecuta cada 30 minutos automáticamente.
on *:START: {
.timerStats 0 1234 showStats
}
alias showStats {
var %channel = #LatinWarez
if ($chan(%channel)) {
var %ops = $calc($nick(%channel,0,o))
var %halfops = $calc($nick(%channel,0,h))
var %voices = $calc($nick(%channel,0,v))
var %regulars = $calc($nick(%channel,0) - %ops - %halfops - %voices)
var %total = $nick(%channel,0)
msg %channel 03(Statistics in %channel $+ ) 04Operators: %ops 07• 04HalfOps: %halfops 07• 04Voices: %voices 07• 04Regular users: %regulars 07• 03Total: %total
}
}
👁️ 4 vistas • 📥 0 descargas