mIRC Home    About    Download    Register    News    Help

Print Thread
#10739 12/02/03 06:04 AM
C
Chameleon
Chameleon
C
-Irc.Server.DomainName- *** Global -- from server.domain.com: Joe used GETPASS cmd for the nickname Julie

When the above Global Notice appears in my status window, I would like to message this to another #channel that I am in. Is there an easy way to do this? Something similar to: on ^*:SNOTICE: .......

#10740 12/02/03 07:04 AM
A
Algorithms
Algorithms
A
Code:
on ^*:snotice:*:{
    $if($network == dotMOD) {
        msg #global - $+ $server $+ - $1-
    }
}


Might be what you are looking for.

#10741 13/02/03 03:29 AM
C
Chameleon
Chameleon
C
lol.... it's kinda workin' ! It's actually messaging my #channel ALL the server notices! Including /oper 's ...

This is not exactly what I had planned!! I would like to just have messages directed to a particular #channel when my Operators use the /ns getpass command (as shown above) and that particular text displays in my status window.

Here is a sample code that I have... I would like to use something like this, but instead of having it notice me, I would like it to message a #channel .....


Status display:

-Irc.Server.Domain- *** Notice -- Client connecting on port 7000: max (male@100.100.100.100)

Code:

on ^*:SNOTICE:*** Notice -- Client connecting*:/notice MyNickname $4-

#10742 13/02/03 04:44 AM
Joined: Dec 2002
Posts: 1,253
H
Hoopy frood
Offline
Hoopy frood
H
Joined: Dec 2002
Posts: 1,253
Code:

on ^*:SNOTICE:* Global -- from *.*.*? * used GETPASS cmd for *:{
  if ($me ison #YourServicesChannel) msg #YourServicesChannel $6-
  haltdef
}


Link Copied to Clipboard