| View previous topic :: View next topic |
| Author |
Message |
chadrt Voice
Joined: 19 Mar 2006 Posts: 33
|
Posted: Sun Feb 02, 2014 6:13 pm Post subject: FzCommands "user list" doesnt work in msg |
|
|
I have found that when I go into a public room I can list the users using:
Then when I try to message the bot using:
It only gives me a SYNTAX error and tells me how to format it:
| Code: | | SYNTAX: invite <chan> <nick>. |
|
|
| Back to top |
|
 |
Get_A_Fix Master

Joined: 07 May 2005 Posts: 206 Location: New Zealand
|
Posted: Sat Feb 08, 2014 10:20 am Post subject: Re: FzCommands "user list" doesnt work in msg |
|
|
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: |
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. |
|
| Back to top |
|
 |
|