mIRC Home    About    Download    Register    News    Help

Print Thread
#10739 12/02/03 06:04 AM
Joined: Jan 2003
Posts: 3
C
Self-satisified door
OP Offline
Self-satisified door
C
Joined: Jan 2003
Posts: 3
-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
Joined: Feb 2003
Posts: 30
A
Ameglian cow
Offline
Ameglian cow
A
Joined: Feb 2003
Posts: 30
Code:
on ^*:snotice:*:{
    $if($network == dotMOD) {
        msg #global - $+ $server $+ - $1-
    }
}


Might be what you are looking for.


Bluesock - Better than a redhat.
http://www.bluesock.com
#10741 13/02/03 03:29 AM
Joined: Jan 2003
Posts: 3
C
Self-satisified door
OP Offline
Self-satisified door
C
Joined: Jan 2003
Posts: 3
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,321
H
Hoopy frood
Offline
Hoopy frood
H
Joined: Dec 2002
Posts: 1,321
Code:

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


DALnet: #HelpDesk and #m[color:#FF0000]IR[color:#EEEE00]C

Link Copied to Clipboard