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

Joined: Dec 2002
Posts: 1,253
H
Hoopy frood
Offline
Hoopy frood
H
Joined: Dec 2002
Posts: 1,253
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 
  }
}

Joined: Jan 2003
Posts: 237
X
Fjord artisan
Offline
Fjord artisan
X
Joined: Jan 2003
Posts: 237
on *:TEXT:*:?: {
if (%noMSG == On) {
/close -m $nick
/ignore -p $nick
}

thats a much more simple way

Joined: Dec 2002
Posts: 1,253
H
Hoopy frood
Offline
Hoopy frood
H
Joined: Dec 2002
Posts: 1,253
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