Hi!

I want to know is a possibility to obtain the total number of users of a chan directly ON JOIN event (when i join a channel) without using a timer, i.e. before the nicklist is initiated on that channel.

For example:

Code:
ON 1:JOIN:#: {
  if ($nick == $me) echo -a $nick(#,0)
}


In this way, it will echo $nick(#,0) -> 1, because the ON JOIN event process the commands before all the nicks is initiated. Of course, i can use /timer 1 0 echo -a $nick(#,0), but i need to know the total users before calling the NickLust (Custom DLL of Nicklist), because Nicklust can be initiated only ON JOIN event without using a delay or a timer.

Last edited by dukealex; 22/02/19 10:21 AM.