mIRC Home    About    Download    Register    News    Help

Print Thread
#134431 01/11/05 09:37 AM
Joined: Oct 2005
Posts: 75
C
Babel fish
OP Offline
Babel fish
C
Joined: Oct 2005
Posts: 75
on 1:NOTIFY:{
if ($address($nick,4) == *!*@*.dsl.somecity.mybell.net) {
/notice $me 15•14•1•4 $nick is ON IRC 1•14•15•
}
}
on 1:UNOTIFY:{
if ($address($nick,4) == *!*@*.dsl.somecity.mybell.net) {
/notice $me 15•14•1•4 $nick has LEFT IRC 1•14•15•
}
}

will these work? if not any suggestions besides using nick only as notifier?

Joined: Mar 2005
Posts: 420
X
Fjord artisan
Offline
Fjord artisan
X
Joined: Mar 2005
Posts: 420
Code:
 on ^*:NOTIFY:{
  if (*@*.dsl.somecity.mybell.net iswm $notify($nick).addr) echo $colour(notice) -at 15•14•1•4 $nick is ON IRC 1•14•15•
  haltdef
}
on ^*:UNOTIFY:{
  if (*@*.dsl.somecity.mybell.net iswm $notify($nick).addr) echo $colour(notice) -at 15•14•1•4 $nick has LEFT IRC 1•14•15•
  haltdef
} 


/help $notify


If you have a plastic floor runner over your tiles, then you're one Hella Pinoy!
Joined: Oct 2005
Posts: 75
C
Babel fish
OP Offline
Babel fish
C
Joined: Oct 2005
Posts: 75
it worked great, but what i meant to ask is...

is it possible to use addresses or masks as notifier or am i stuck with nicks only?

reason why i asked is that no matter how many times i change nicks my friends always knew and they're not even ircops, unless i try to change my ip, was wondering if that's what they're doing

Last edited by Confuzzled; 02/11/05 09:48 AM.
Joined: Dec 2002
Posts: 1,245
M
Hoopy frood
Offline
Hoopy frood
M
Joined: Dec 2002
Posts: 1,245
make sure that you have marked the "invisible mode" on the connect topic of the options dialog.
Most IRCds allow /who to return info based on partial address *provided* that your user mode is not set +i (see above)
a quick check for that is //echo -a $usermode
for info on "/who" on the network you use, type /who with no nick/address

Joined: Oct 2005
Posts: 75
C
Babel fish
OP Offline
Babel fish
C
Joined: Oct 2005
Posts: 75
yes i always check invisible mode on main option on connect i knew about /who command but i want to know if it's possible to have a notify script that handles addresses, or masks only instead of nicknames only like if i use the address of a friend it'll show me if he or she is on even tho she's under a different nickname but same address


Link Copied to Clipboard