mIRC Homepage
Posted By: learn3r using user list - 23/03/07 04:04 PM
is it possible to get the stored nicks on the user list?


Code:
/auser -a users nick1
(nick1 isn`t registered)


how can i get the stored nicks

Code:
on *:text:!nlist:#:{
  msg # saved nicks are: ----how-------
}
Posted By: xDaeMoN Re: using user list - 23/03/07 05:07 PM
You have to loop to the userlist with the use of $ulist

Code:
On *:TEXT:!nlist:#: {
  var %n = 1, %l
  while $ulist(*,users,%n) {
    %l = %l $v1
    inc %n
  }
  msg $chan Saved Nicks are: %l
}
Posted By: learn3r Re: using user list - 23/03/07 05:23 PM
Thank you xDaeMoN

working great
Posted By: xDaeMoN Re: using user list - 23/03/07 06:25 PM
np smile
© mIRC Discussion Forums