mIRC Homepage
Posted By: KIRK_ru how remove reply MODE? - 11/03/06 12:35 AM
-> irc.HZ JOIN #chan
<- :HZ!HZ.hz JOIN :#chan
-> irc.HZ MODE #chan
<- :irc.HZ MODE #chan +nt

how remove mIRC reply MODE on the JOIN event?
Posted By: hkr Re: how remove reply MODE? - 11/03/06 09:01 AM
try this (not tested):
Code:
 on *join:#:{ set %nomode y }
on ^1:rawmode:#:{ if (%nomode) { haltdef | unset %nomode } } 
Posted By: KIRK_ru Re: how remove reply MODE? - 12/03/06 10:47 AM
its not working
Posted By: mIRCManiac Re: how remove reply MODE? - 12/03/06 03:46 PM
Try this

Code:
on ME:*:JOIN:#:set -eu5 $+(%,nomode.,#) 1
on ^*:SERVERMODE:#: {
  if ($($+(%,nomode.,#),2)) {
    haltdef
    unset $+(%,nomode.,#)
  }
}
Posted By: KIRK_ru Re: how remove reply MODE? - 13/03/06 03:33 AM
its not working too
Posted By: jaytea Re: how remove reply MODE? - 13/03/06 04:31 AM
mirc will request the channel modes when it joins, since the server doesnt send them on its own ;D as far as i know, theres no way to stop that from happening
© mIRC Discussion Forums