mIRC Home    About    Download    Register    News    Help

Print Thread
#144493 11/03/06 12:35 AM
Joined: Mar 2006
Posts: 10
K
KIRK_ru Offline OP
Pikka bird
OP Offline
Pikka bird
K
Joined: Mar 2006
Posts: 10
-> 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
Joined: Mar 2006
Posts: 19
H
hkr Offline
Pikka bird
Offline
Pikka bird
H
Joined: Mar 2006
Posts: 19
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
Joined: Mar 2006
Posts: 10
K
KIRK_ru Offline OP
Pikka bird
OP Offline
Pikka bird
K
Joined: Mar 2006
Posts: 10
its not working

#144496 12/03/06 03:46 PM
Joined: Feb 2005
Posts: 681
M
Fjord artisan
Offline
Fjord artisan
M
Joined: Feb 2005
Posts: 681
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
Joined: Mar 2006
Posts: 10
K
KIRK_ru Offline OP
Pikka bird
OP Offline
Pikka bird
K
Joined: Mar 2006
Posts: 10
its not working too

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