mIRC Homepage
Posted By: RiMaJoy notify - 02/03/11 07:39 PM
hi all,

How can i stop the normal notify messages like:
Quote:
[18:29] * Blablabla [someone@E1G65B.46B894.638F42.655K09] has left IRC


I have tried this in raw:
Code:
raw 600:*: { halt

}

raw 601:*:{ halt
}


and this in other code

Code:
on *:unotify:{
  echo -a 14 $+ $timestamp $+ $str( ,$calc(17 - $len(Info))) 2Info: $nick is nu offline
  halt 
}
on *:notify:{ 
  echo -a 14 $+ $timestamp $+ $str( ,$calc(17 - $len(Info))) 2Info: $nick is nu online
  halt 
}

as u can see i have set my own custom messages for notify

All help is welcome
Posted By: westor Re: notify - 02/03/11 07:43 PM
try replace it with /haltdef command
Posted By: RiMaJoy Re: notify - 02/03/11 07:48 PM
doesn't work frown
Posted By: westor Re: notify - 02/03/11 07:52 PM
replace the raws with these

Code:
raw 600:*: { haltdef }
raw 601:*: { haltdef }

Posted By: Tomao Re: notify - 02/03/11 07:56 PM
Code:
on ^*:unotify:{
  echo -a 14 $+ $timestamp $+ $str( ,$calc(17 - $len(Info))) 2Info: $nick is nu offline
  haltdef 
}
on ^*:notify:{ 
  echo -a 14 $+ $timestamp $+ $str( ,$calc(17 - $len(Info))) 2Info: $nick is nu online
  haltdef
}
You should include the ^ prefix and /haltdef for both events.
Posted By: RiMaJoy Re: notify - 02/03/11 08:19 PM
thanks tomao the ^ did the trick
© mIRC Discussion Forums