Truk   -  Feb 14, 2014

in mIRC is there a way in a script to get the total number of peeps in chat - voiced or not? something like count #chanName so I can implement a mode change when the current chatter count exceds a certain number of chatters? Thanks a Ton in advance!!

PennyBreed  -  Feb 14, 2014
$nick(#myChan,0,v)
Yawhatnever  -  Feb 14, 2014

/help $nick

$nick(#, 0) for the total.

PennyBreed  -  Feb 14, 2014

I guess that was an incomplete answer, after I re-read your question..

;total nicks
$nick(#myChan,0)

;total voiced nicks
$nick(#myChan,0,v)

;you can use other parameters as well..
$nick(#myChan,0,o) ;nicks with +o
$nick(#myChan,0,h) ;nicks with +h
Truk  -  Feb 21, 2014

Thanks so much!!

Sign in to comment

Are you sure you want to unfollow this person?
Are you sure you want to delete this?
Click "Unsubscribe" to stop receiving notices pertaining to this post.
Click "Subscribe" to resume notices pertaining to this post.