mIRC Home    About    Download    Register    News    Help

Print Thread
#66946 07/01/04 02:08 PM
Joined: Dec 2002
Posts: 483
Deep3D Offline OP
Pan-dimensional mouse
OP Offline
Pan-dimensional mouse
Joined: Dec 2002
Posts: 483
When I am in a channel, and a person parts i can click on the channel name and click on "list users"

But if i wan't to make a "refresh" button into channel popup, wha't alias must I use then?

#66947 07/01/04 02:17 PM
Joined: Jan 2003
Posts: 1,063
D
Hoopy frood
Offline
Hoopy frood
D
Joined: Jan 2003
Posts: 1,063
the nicklist is updated automatically when anyone joins/parts

you can add an option to the channel popup to check the names

add this to the channel popup:

Code:
See Names: .names $chan


this will give you a list with all the people in your current room


If it ain't broken, don't fix it!
#66948 10/01/04 11:15 AM
Joined: Sep 2003
Posts: 156
B
Vogon poet
Offline
Vogon poet
B
Joined: Sep 2003
Posts: 156
Code:
alias nicklist {
var %i = 1
while $nick(#,%i) {
echo -s * # %i $ifmatch
inc %i
}
end of nicks on #
}


Link Copied to Clipboard