mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Dec 2002
Posts: 60
C
coder Offline OP
Babel fish
OP Offline
Babel fish
C
Joined: Dec 2002
Posts: 60
here is my simple remote

Code:
 
on *!:JOIN:#: { 
  if (22.192.12* iswm $address($nick,2)) { if (!$window(@join)) { .window -nk @join } | echo @join $nick is join $chan with ip $address($nick,2) }  
}  
 



i want make the " $nick " is linked,so when i double-click on it,it will automaticly query that nick,its perfectly same like u are doing coder

Joined: Jan 2003
Posts: 2,523
Q
Hoopy frood
Offline
Hoopy frood
Q
Joined: Jan 2003
Posts: 2,523
Try this:
Code:
on ^*:hotlink:*:@join: if $1 *join #*? ip*? !iswm $hotline { halt }
on *:hotlink:*:@join: query $1

Assuming that you aren't adding anything else to @join, apart from lines of this type, you can make it even simpler/faster:
Code:
on ^*:hotlink:*:@join: if $1 * !iswm $hotline { halt }
on *:hotlink:*:@join: query $1


/.timerQ 1 0 echo /.timerQ 1 0 $timer(Q).com
Joined: Dec 2002
Posts: 60
C
coder Offline OP
Babel fish
OP Offline
Babel fish
C
Joined: Dec 2002
Posts: 60
thx so much
its work perfectly
thx


Link Copied to Clipboard