mIRC Home    About    Download    Register    News    Help

Print Thread
#144493 11/03/06 12:35 AM
K
KIRK_ru
KIRK_ru
K
-> 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?

#144494 11/03/06 09:01 AM
H
hkr
hkr
H
try this (not tested):
Code:
 on *join:#:{ set %nomode y }
on ^1:rawmode:#:{ if (%nomode) { haltdef | unset %nomode } } 

#144495 12/03/06 10:47 AM
K
KIRK_ru
KIRK_ru
K
its not working

#144496 12/03/06 03:46 PM
M
mIRCManiac
mIRCManiac
M
Try this

Code:
on ME:*:JOIN:#:set -eu5 $+(%,nomode.,#) 1
on ^*:SERVERMODE:#: {
  if ($($+(%,nomode.,#),2)) {
    haltdef
    unset $+(%,nomode.,#)
  }
}

#144497 13/03/06 03:33 AM
K
KIRK_ru
KIRK_ru
K
its not working too

#144498 13/03/06 04:31 AM
Joined: Feb 2006
Posts: 523
J
Fjord artisan
Offline
Fjord artisan
J
Joined: Feb 2006
Posts: 523
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


"The only excuse for making a useless script is that one admires it intensely" - Oscar Wilde

Link Copied to Clipboard