mIRC Home    About    Download    Register    News    Help

Print Thread
#230237 02/03/11 07:39 PM
Joined: Jul 2008
Posts: 57
R
RiMaJoy Offline OP
Babel fish
OP Offline
Babel fish
R
Joined: Jul 2008
Posts: 57
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

RiMaJoy #230240 02/03/11 07:43 PM
Joined: Dec 2008
Posts: 1,515
Hoopy frood
Offline
Hoopy frood
Joined: Dec 2008
Posts: 1,515
try replace it with /haltdef command

Last edited by westor; 02/03/11 07:44 PM.

Need Online mIRC help or an mIRC Scripting Freelancer? -> https://irc.chathub.org <-
westor #230241 02/03/11 07:48 PM
Joined: Jul 2008
Posts: 57
R
RiMaJoy Offline OP
Babel fish
OP Offline
Babel fish
R
Joined: Jul 2008
Posts: 57
doesn't work frown

RiMaJoy #230242 02/03/11 07:52 PM
Joined: Dec 2008
Posts: 1,515
Hoopy frood
Offline
Hoopy frood
Joined: Dec 2008
Posts: 1,515
replace the raws with these

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



Need Online mIRC help or an mIRC Scripting Freelancer? -> https://irc.chathub.org <-
RiMaJoy #230243 02/03/11 07:56 PM
Joined: Jul 2007
Posts: 1,129
T
Hoopy frood
Offline
Hoopy frood
T
Joined: Jul 2007
Posts: 1,129
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.

Tomao #230244 02/03/11 08:19 PM
Joined: Jul 2008
Posts: 57
R
RiMaJoy Offline OP
Babel fish
OP Offline
Babel fish
R
Joined: Jul 2008
Posts: 57
thanks tomao the ^ did the trick


Link Copied to Clipboard