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.

FzCommands "user list" doesnt work in msg

Requests for complete scripts or modifications/fixes for scripts you didn't write. Response not guaranteed, and no thread bumping!
Post Reply
c
chadrt
Voice
Posts: 33
Joined: Sun Mar 19, 2006 4:37 pm

FzCommands "user list" doesnt work in msg

Post by chadrt »

I have found that when I go into a public room I can list the users using:

Code: Select all

!users list
Then when I try to message the bot using:

Code: Select all

user list
It only gives me a SYNTAX error and tells me how to format it:

Code: Select all

SYNTAX: invite <chan> <nick>.
User avatar
Get_A_Fix
Master
Posts: 206
Joined: Sat May 07, 2005 6:11 pm
Location: New Zealand

Re: FzCommands "user list" doesnt work in msg

Post by Get_A_Fix »

Very strange that requesting a user list would get you an invite syntax output. Something must be wrong with the coding and only the author can fix that, then maybe post an update so egghelp has the latest release. It is pretty simple to get a user list though. I use the following method.

Code: Select all

bind pub - !users pub:users
proc pub:users {nick uhost hand chan arg} {
  if {[matchattr [nick2hand $nick] o]} {
    puthelp "PRIVMSG $chan :Userlist: [eval userlist] (Total Count: [countusers])"
  }
}
We explore.. and you call us criminals. We seek after knowledge.. and you call us criminals. We exist without skin color, without nationality, without religious bias.. and you call us criminals.
Post Reply