mIRC Home    About    Download    Register    News    Help

Print Thread
#15658 16/03/03 06:57 PM
Joined: Mar 2003
Posts: 48
F
flup Offline OP
Ameglian cow
OP Offline
Ameglian cow
F
Joined: Mar 2003
Posts: 48
Anyone has a script wich shows the record number of users in a channel ?

#15659 16/03/03 07:07 PM
Joined: Dec 2002
Posts: 68
P
Babel fish
Offline
Babel fish
P
Joined: Dec 2002
Posts: 68
Here is mine. I made it awhile ago so it may not be as efficient as others.

Code:
on 1:join:#community:{ if (%rec0rd == $null) { set %rec0rd 0 } | if ($nick(#community,0) > %rec0rd) { set %rec0rd $nick(#community,0) | set %rec0rdn $nick | set %rec0rdd $date(mm/dd/yyyy) | set %rec0rdt $time(hh:nn:ss $+ tt) | msg $chan Record! is now set at $nick(#community,0) } }
on 1:text:!record:#community:{ msg $chan Record! is currently at %rec0rd $+ . It was set by %rec0rdn $+ , on %rec0rdd at %rec0rdt $+ . }


You'll have to change it to your channel (or change it for all channels).

Sorry for the pipes

Last edited by phrozenfire; 16/03/03 07:08 PM.
#15660 16/03/03 07:09 PM
Joined: Jan 2003
Posts: 148
K
Vogon poet
Offline
Vogon poet
K
Joined: Jan 2003
Posts: 148
Hey man! That`s easy!

on *:join:#:{
if (%maxusers < $nick($chan,0)) { %maxusers = $nick($chan,0) }
}

#15661 17/03/03 11:55 AM
Joined: Mar 2003
Posts: 48
F
flup Offline OP
Ameglian cow
OP Offline
Ameglian cow
F
Joined: Mar 2003
Posts: 48
Cant get ;m working

#15662 17/03/03 11:56 AM
Joined: Mar 2003
Posts: 48
F
flup Offline OP
Ameglian cow
OP Offline
Ameglian cow
F
Joined: Mar 2003
Posts: 48
Nevermind g0t it w0rking


Link Copied to Clipboard