Quote:
Hi again!

I have this code in my remote
Code:
 on *:text:w w w . m i r c . c o m*:#bangladesh: { /gzline $nick 5d5m5h5s 12ZUCKKK OFF BASTOR } 
} 


* I removed the actual website because I don't want anyone to think i am advertising. I used mirc is an example.

When someone types that in #bangladesh, it's more like when someone floods with that text. How come my remote does not pick it up and gzline it?

Any solutions?

Thanks!


2 Methods of determining w w w . m i r c . c o m in text events well theres more but heres 2 so you get the point #1 we have iswm aka IS WORD MATCH this method detects both www.mirc.com and w w w . m i r c . c o m and nothing else.

on *:TEXT:*:#bangladesh:{
if (*W*W*W*.*M*I*R*C*.*C*O*M iswm $1-) { msg # mIRC dot Com j00rself }
}

#2 method is to remove spaces on incoming text, isin can be evaluated.

on *:TEXT:*:#bangladesh:{
if (www.mirc.com isin $remove($1-,$chr(32))) { msg # mIRC dot Com j00rself }
}

btw the msg # can be changed to whatever command to be performed


Code:
if $reality > $fiction { set %sanity Sane }
Else { echo -a *voices* }