mIRC Home    About    Download    Register    News    Help

Print Thread
#238864 02/09/12 02:38 PM
Joined: Nov 2011
Posts: 30
A
arc123 Offline OP
Ameglian cow
OP Offline
Ameglian cow
A
Joined: Nov 2011
Posts: 30
I got this addon for whois on join

but the problem is when I enable it, the whois appear on the open page, I want it to appear on the room I made enable on it

if thats possible

Code:
menu Channel {
  Whois On Join
  .Enabled {
    set %wchannels $addtok(%wchannels,#,44)
    echo 4 -at ••• Whois on join is 7Enabled 4(for # $+ )
  }
  .Disabled {
    set %wchannels $remtok(%wchannels,#,1,44)
    echo 4 -at ••• Whois on join is 7Disabled 4(for # $+ )
  }
}

arc123 #238868 02/09/12 04:46 PM
Joined: Jul 2007
Posts: 1,129
T
Hoopy frood
Offline
Hoopy frood
T
Joined: Jul 2007
Posts: 1,129
Change
Quote:
echo 4 -at
to
Code:
echo 4 -t #
the -a switch is the culprit to display the echo print all over the open, active windows.


Link Copied to Clipboard