This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

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