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.

Is there a command that Lists ALL users in the user file?

Old posts that have not been replied to for several years.
Locked
W
Weirdo
Master
Posts: 265
Joined: Sat Apr 27, 2002 8:00 pm
Location: Manchester, England

Is there a command that Lists ALL users in the user file?

Post by Weirdo »

LTNS everyone. One of my ops brought this question up. We know about the .channel command, but what about the users not online. Will this be a case of making a script, or is there already something in the eggdrop core which can do this?
p
ppslim
Revered One
Posts: 3914
Joined: Sun Sep 23, 2001 8:00 pm
Location: Liverpool, England

Post by ppslim »

You can show all users in the userfile using
.match 1 999
in the partyline.

However, to display users that have flags on channel X, but are not currently there (or those that are there as well), would need a script.
t
tainted
Master
Posts: 239
Joined: Sun May 12, 2002 8:00 pm
Location: chicago
Contact:

Post by tainted »

Code: Select all

[dcc(bot)] .match 1 999
[bot(dcc)] [08:11] #eggs# match 1 999
[bot(dcc)] *** Matching '1':
[bot(dcc)] HANDLE    PASS NOTES FLAGS           LAST
[bot(dcc)] --- Found 0 matches.


[dcc(bot)] .match ** 9999
[bot(dcc)] [08:11] #eggs# match ** 9999
[bot(dcc)] *** Matching '**':
<snip>
[bot(dcc)] --- Found 40 matches.
Typo? :o
p
ppslim
Revered One
Posts: 3914
Joined: Sun Sep 23, 2001 8:00 pm
Location: Liverpool, England

Post by ppslim »

Sorry - use a single *
W
Weirdo
Master
Posts: 265
Joined: Sat Apr 27, 2002 8:00 pm
Location: Manchester, England

Post by Weirdo »

Ah, works nicely, thank you very much

Might be fun to make a script for this one day :)
t
tainted
Master
Posts: 239
Joined: Sun May 12, 2002 8:00 pm
Location: chicago
Contact:

Post by tainted »

Its ALWAYS fun to reinvent the wheel. :roll:
p
ppslim
Revered One
Posts: 3914
Joined: Sun Sep 23, 2001 8:00 pm
Location: Liverpool, England

Post by ppslim »

Sorry, I got mixed who posted what there. So credit to tainted.
Locked