mIRC Home    About    Download    Register    News    Help

Print Thread
#102897 14/11/04 03:32 AM
Joined: Feb 2003
Posts: 3,432
S
sparta Offline OP
Hoopy frood
OP Offline
Hoopy frood
S
Joined: Feb 2003
Posts: 3,432
this work for /msg:

.raw privmsg $1 $2-

but what to use for DCC chat ?somone that know?

missed litle text. i also want to echo the DCC chat, the problem is that if the chat is a eggdrop, then you have:

<botnick> <person in the partyline> message <<-- how can i solve that ? it wont echo the right way.. :tongue:

Last edited by sparta; 14/11/04 04:01 AM.

if ($me != tired) { return } | else { echo -a Get a pot of coffee now $+($me,.) }
#102898 14/11/04 04:56 AM
Joined: Dec 2002
Posts: 1,541
L
Hoopy frood
Offline
Hoopy frood
L
Joined: Dec 2002
Posts: 1,541
=$nick is used for DCC Chat nicknames so in your case Id say:

.raw privmsg = $+ $1 $2-

would do the trick


Those who fail history are doomed to repeat it
#102899 14/11/04 07:34 AM
Joined: Feb 2003
Posts: 3,432
S
sparta Offline OP
Hoopy frood
OP Offline
Hoopy frood
S
Joined: Feb 2003
Posts: 3,432
Nope. $nick return my nick, same as $1.. so i cant use:

.raw privmsg = $+ $1 $2-

that means i send a private message to me self.. so what to use ? :tongue:


if ($me != tired) { return } | else { echo -a Get a pot of coffee now $+($me,.) }
#102900 14/11/04 11:32 AM
Joined: Mar 2003
Posts: 160
Vogon poet
Offline
Vogon poet
Joined: Mar 2003
Posts: 160
firast up, that's the way it works with eggdrops, it's nothing to do with mIRC itself.

secondly this is what i used for dcc chats

Code:
 on 1:INPUT:=:{
  if ($left($1,1) != /) {
    haltdef
    msg $active $1-
  }
} 


then in my /msg alias i have this line

if ($chr(61) isin $1) { echo -ai25 $+ $calc($len($1) + 8) 13<15 $+ $me $+ 13> $2- | .msg $1- }

#102901 14/11/04 11:45 AM
Joined: Feb 2003
Posts: 3,432
S
sparta Offline OP
Hoopy frood
OP Offline
Hoopy frood
S
Joined: Feb 2003
Posts: 3,432
I have a cusom alias for /msg .. so that means that /msg wont work the same as in a default mirc.. but i solved it.. smile made my alias halt if the nick is =nick .. smile


if ($me != tired) { return } | else { echo -a Get a pot of coffee now $+($me,.) }

Link Copied to Clipboard