mIRC Home    About    Download    Register    News    Help

Print Thread
#95514 25/08/04 01:11 PM
Joined: Dec 2002
Posts: 25
S
Ameglian cow
OP Offline
Ameglian cow
S
Joined: Dec 2002
Posts: 25
I'm trying to suppress the regular output of a NOTICE with a remote script with a /halt command in it.
The remote script is being executed as expected, but the regular text still shows up.
Anybody know why and how I can prevent it?

Code:
ON *:NOTICE:Text to look for:?: {
  halt
}

#95515 25/08/04 01:25 PM
Joined: Aug 2004
Posts: 101
D
Vogon poet
Offline
Vogon poet
D
Joined: Aug 2004
Posts: 101
try
Code:
on ^*:NOTICE:<matchtext>:?:{ 
  haltdef
  ;[color:green]any other code here... [/color]  
}


Maybe I wake up one day to notice that all my life was just a dream!
#95516 25/08/04 01:26 PM
Joined: Oct 2003
Posts: 306
J
Fjord artisan
Offline
Fjord artisan
J
Joined: Oct 2003
Posts: 306
try with ^

ON ^*:NOTICE:Text to look for:?: { halt}



mess with the best

Link Copied to Clipboard