Skip to content
MSN

the active window

A TG007 community discussion started by DreaM.

Discussion 10 posts
Page 1 of 1
Open
Topic #2787 · 10 published posts · 799 views

hi guys, I am using theme for my msn script and it works fine but when the active window is whisper, The theme does not work.

 

for example I am using:

 

on ^*:PART:*: {
 echo $msn.get($cid,room) 14 $msn.decode($replace($nick, >, Guest_))  ( $+ *! $+ $$ial($nick $+ *,1).addr $+ ) has left the conversation.
 if ($window($nick) == $nick) echo -a 4 $+ $msn.decode($replace($nick, >, Guest_)) ( $+ *! $+ $$ial($nick $+ *,1).addr $+ ) has left the conversation.
 haltdef
}

 

If I am talking with someone in whisper, the theme works because at this time $window($nick) == $nick

 

but when the active window is whisper and it is flashing because I DIDN't OPEN THE WHISPER WINDOW YET TO REPLY, The part line in theme does not work if someone left my room.

 

any help?

Edited Feb 6, 2005 6:34 PM by DreaM

Have you tried using

on ^*:PART:?: {
echo $msn.get($cid,room) 14 $msn.decode($replace($nick, >, Guest_))  ( $+ *! $+ $$ial($nick $+ *,1).addr $+ ) has left the conversation.
if ($window($nick) == $nick) echo -a 4 $+ $msn.decode($replace($nick, >, Guest_)) ( $+ *! $+ $$ial($nick $+ *,1).addr $+ ) has left the conversation.
haltdef
}

 

with a ?

err0r: 666 + 1337 = 2003 backwards is 3002 which is how many people ozzy has banned from tg
err0r: spooky

Actually..forget what I said. That was a n00b suggestion lmao

err0r: 666 + 1337 = 2003 backwards is 3002 which is how many people ozzy has banned from tg
err0r: spooky

on ^*:PART:*: shud stand for both: on ^*:PART:#: and on ^*:PART:?:

 

i guess o_O

on me:*:join:#:hop #

on ^*:PART:#:{
echo 14 $chan $replace($msn.decode($nick),>,Guest_) (*! $+ $address $+ ) has left the conversation.
if ($window($nick)) echo 14 $ifmatch $replace($msn.decode($nick),>,Guest_) (*! $+ $address $+ ) has left the conversation.
}

bfush.PNG

thank you all, the theme works fine now but I also see:

 

blah(*!548FFFDFE248FRSF54@GateKeeperPassport) has left the conversation.

 

I don't know from where this message is lol

I disabled vincula theme and searched for word "has left" and all parts but no another theme at all because It is my script and I know what I loaded there.

 

my question is: is there a mirc theme works automatically even If i dont have a theme? and how can I disable it?

Tools >> Options >> [left hand side of popup window] >> IRC >> Options >> Untick show user joins / parts.

 

Standard setting in MIRC....might be causing

it was not checked Mrs but anyway I fixed it. the problem was echo -a or echo $ifmatch, it should be echo $window($nick)

after each join/part/quit event in ur theme, put a 'haltdef'

on me:*:join:#:hop #

Thank you X-System, Seems that you didn't get what the problem exactly was but thank you again.