mIRC Home    About    Download    Register    News    Help

Print Thread
#168499 09/01/07 12:36 PM
L
learn3r
learn3r
L
Code:
on ^*:open:?:{
  echo $nick Chatting with:( $+ $gettok($address,1,64) $+ @ $+ $gettok($address,2,64) $+ )
}


Why isn't this echoing on my pm window instead on the status window...

#168501 09/01/07 01:02 PM
Joined: Feb 2003
Posts: 806
C
Hoopy frood
Offline
Hoopy frood
C
Joined: Feb 2003
Posts: 806
Because $nick refers to a query window. Use "echo =$nick" to refer to the DCC chat window.

cold #168502 09/01/07 01:34 PM
L
learn3r
learn3r
L
yes but it is meant to be on query window echo

#168506 09/01/07 02:22 PM
Joined: Oct 2004
Posts: 8,061
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Oct 2004
Posts: 8,061
Remove the ^ from that. You're not halting anything, so don't use it.

#168508 09/01/07 02:44 PM
Joined: Feb 2003
Posts: 806
C
Hoopy frood
Offline
Hoopy frood
C
Joined: Feb 2003
Posts: 806
Oh I could swear I read "chat window" instead of "status window". Well, the answer is the same: "echo $nick" refers to $nick's query window. Use "echo -s $nick".

cold #168523 09/01/07 07:24 PM
Joined: Oct 2004
Posts: 8,061
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Oct 2004
Posts: 8,061
You still read it wrong. smile

He wants it to appear in his PM window, NOT his status window. Because of the ^, it is appearing in his status window. Removing it makes it appear in the correct place.

Riamus2 #168527 09/01/07 08:48 PM
L
learn3r
learn3r
L
Thanks you`re right

#168534 09/01/07 11:04 PM
Joined: Jul 2006
Posts: 242
H
Fjord artisan
Offline
Fjord artisan
H
Joined: Jul 2006
Posts: 242
echo -s this will go in the status window
echo $query($nick) should go in the PM window

Last edited by HaleyJ; 09/01/07 11:06 PM.
HaleyJ #168536 09/01/07 11:40 PM
Joined: Oct 2004
Posts: 8,061
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Oct 2004
Posts: 8,061
You don't need $query around $nick for it to work. It was just the ^ causing the problem.

Riamus2 #168548 10/01/07 03:18 AM
Joined: Feb 2003
Posts: 806
C
Hoopy frood
Offline
Hoopy frood
C
Joined: Feb 2003
Posts: 806
LOL, I guess I was needing some sleep. grin


Link Copied to Clipboard