mIRC Home    About    Download    Register    News    Help

Print Thread
#8189 24/01/03 11:32 PM
V
verdugo2000
verdugo2000
V
on ^*:OPEN:?: {
if (%noMSG == On) { msg $nick No contesto Privados en este Momento }
.ignore -p *
.timerproteccionqueryfloodaway 1 4 .ignore -pr *
halt }
}

and now my version has

on ^*:OPEN:?: {
if (%noMSG == On) { msg $nick %textaway }
.ignore -p *
.timerproteccionqueryfloodaway 1 4 .ignore -pr *
halt }
}

can you give a help ,how i get finished

thnx

H
Hammer
Hammer
H
Why don't you just issue /ignore -p * when you turn %noMSG On and /ignore -pr * when you turn it Off?
Code:

on ^*:OPEN:?: {
  if (%noMSG == On) {
    .msg $nick No contesto Privados en este Momento
    .ignore -pu4 *
    halt 
  }
}

X
xrn0id
xrn0id
X
on *:TEXT:*:?: {
if (%noMSG == On) {
/close -m $nick
/ignore -p $nick
}

thats a much more simple way

H
Hammer
Hammer
H
That is not simpler. Your version does not prevent the query window from opening. Furthermore, your ignore list will get HUGE in no time.


Link Copied to Clipboard