mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Aug 2004
Posts: 423
C
Fjord artisan
OP Offline
Fjord artisan
C
Joined: Aug 2004
Posts: 423
hello again,

i know this is a popuplar subject so i'm adding to it smile. anywho i have this code and it works:

Code:
 on ^*:join:#:{
  if ($amsr(Messages,Join) == On) {
    if ($nick == $me) {
      echo $color(join) -t $chan $tag Now talking in $chan $+ .
      haltdef
    }
    elseif ($nick != $me) { 
      echo $color(join) -t $chan »3Join: $nick $chr(91) $address $chr(93)
      haltdef 
    }
  }
}
 


but is there a way to disable the default mirc text when the custom text is disabled?? well actually i beleive there is but i'm not sure how to do it within a modified event.. my goal is to stop it completely from appearing, not just what i changed.

would anyone be able to help with this??

thanks in advance!

Joined: Mar 2004
Posts: 45
D
Ameglian cow
Offline
Ameglian cow
D
Joined: Mar 2004
Posts: 45
Code:
 on ^*:JOIN:#: {  
  if ($amsr(Messages,Join) == On) {    
    if ($nick == $me) {      
      echo $color(join) -t $chan $tag Now talking in $chan $+ .      
    }    
    elseif ($nick != $me) {       
      echo $color(join) -t $chan »3Join: $nick $chr(91) $address $chr(93) 
    }  
  }
   [color:red] haltdef [/color] 
} 


This will halt everything, if you have ($amsr(Messages,Join) on, then it will show it...


Link Copied to Clipboard