mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Oct 2006
Posts: 82
B
Babel fish
OP Offline
Babel fish
B
Joined: Oct 2006
Posts: 82
Hi there all.

I am looking for a script or to write a script to echo what is said when my nick is mentioned in a channel i am logged onto but not present in, to the channel i have open. Can anyone either point me in the right direction for such a script or assist me in writing one smile

Thank you in advance


Never ASSUME!!!

As it often makes and ASS out of U and ME!!
Joined: Feb 2003
Posts: 3,432
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Feb 2003
Posts: 3,432
Code:
on *:TEXT:*:#:{
  if ($me isin $1-) && (%hl == on) { 
  window @Highlight 200 200 600 200
  echo @Highlight  $nick $+ : $1-
 }
}

Put that in your remote, then type: "/set %hl on" to enable it, "/set %hl off" to disable it.


if ($me != tired) { return } | else { echo -a Get a pot of coffee now $+($me,.) }
Joined: Oct 2006
Posts: 82
B
Babel fish
OP Offline
Babel fish
B
Joined: Oct 2006
Posts: 82
Originally Posted By: sparta
Code:
on *:TEXT:*:#:{
  if ($me isin $1-) && (%hl == on) { 
  window @Highlight 200 200 600 200
  echo @Highlight  $nick $+ : $1-
 }
}

Put that in your remote, then type: "/set %hl on" to enable it, "/set %hl off" to disable it.


I would like to say thanks, but this isn't what i had in mind as it opens a popup box and does not say which channel it was said in.
I am looking for something that will show up in my active channel telling me who said what in what channel.
for example say someone in #united_kigdom says to me :

hi ^silent^

and i were in my channel #simonsforums i would see:

Highlight channel message from joe^bloggs @ #united_kingdom : [17:32:03] joe^bloggs : hi ^silent^

Sorry for my lack of information.

Thanks in advance. smile


Never ASSUME!!!

As it often makes and ASS out of U and ME!!
Joined: Feb 2003
Posts: 3,432
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Feb 2003
Posts: 3,432
Code:
on *:TEXT:*:#:{
  if ($me isin $1-) && (%hl == on) { 
  echo -a Highlight channel message from $nick @ $chan : $timestamp $nick : $1-
 }
}

Untested, but should work. same here, /set %hl on <- enable.. /set %hl off <- disable..


if ($me != tired) { return } | else { echo -a Get a pot of coffee now $+($me,.) }
Joined: Oct 2006
Posts: 82
B
Babel fish
OP Offline
Babel fish
B
Joined: Oct 2006
Posts: 82
Originally Posted By: sparta
Code:
on *:TEXT:*:#:{
  if ($me isin $1-) && (%hl == on) { 
  echo -a Highlight channel message from $nick @ $chan : $timestamp $nick : $1-
 }
}

Untested, but should work. same here, /set %hl on <- enable.. /set %hl off <- disable..


That works a treat Thank You smile


Never ASSUME!!!

As it often makes and ASS out of U and ME!!

Link Copied to Clipboard