list handles

Old posts that have not been replied to for several years.
Locked
l
loze

list handles

Post by loze »

is it any commando or script that list all the users/handles on the bot?
g
greenbear
Owner
Posts: 733
Joined: Mon Sep 24, 2001 8:00 pm
Location: Norway

Post by greenbear »

on partyline just do
.match *
or if you want a cleaner output, try something like this

Code: Select all

bind dcc o|o listusers dcc:listusers
proc dcc:listusers {hand idx arg} {
 set users ""
 foreach user [userlist] { lappend users "$user," }
 putdcc $idx "Users: [join $users]"
}
Locked