mIRC Home    About    Download    Register    News    Help

Print Thread
#65931 29/12/03 11:22 PM
Joined: Mar 2003
Posts: 41
B
BORR Offline OP
Ameglian cow
OP Offline
Ameglian cow
B
Joined: Mar 2003
Posts: 41
Alias channel.nicknames {
set %i 1
: one
if ($nick(%custom.channel.join.alt,%i,o) != $null) { aline -l 2 %custom.channel.join $nick(%custom.channel.join.alt,%i,o) }
else { set %i 1 | goto two }
inc %i
goto one
:two
if ($nick(%custom.channel.join.alt,%i,v) != $null) { aline -l 10 %custom.channel.join $nick(%custom.channel.join.alt,%i,v) }
else { set %i 1 | goto three }
inc %i
goto two
:three
if ($nick(%custom.channel.join.alt,%i,r) != $null) { aline -l 1 %custom.channel.join $nick(%custom.channel.join.alt,%i,r) }
else { set %i 1 | goto end }
inc %i
goto three
:end
}

%custom.channel.join.alt = channel name (#BOR)
%custom.channel.join = custom window name (@BOR)

Why doesnt this work?!

And another question: How can you make a popup menu in all custom windows, and not just in one?

#65932 29/12/03 11:55 PM
Joined: Dec 2002
Posts: 1,922
O
Hoopy frood
Offline
Hoopy frood
O
Joined: Dec 2002
Posts: 1,922
If you don't insist on using colors, a single command can copy the whole nicklist: //filter -clLww %custom.channel.join.alt %custom.channel.join

To answer the second question, put in the remote:
Code:
menu @* {
  stuff
}

#65933 30/12/03 12:06 AM
Joined: Mar 2003
Posts: 41
B
BORR Offline OP
Ameglian cow
OP Offline
Ameglian cow
B
Joined: Mar 2003
Posts: 41
Thnx mate laugh

btw, I could have known the last one.. Me feels stupid smirk


Link Copied to Clipboard