mIRC Home    About    Download    Register    News    Help

Print Thread
#71036 11/02/04 01:53 PM
Joined: Mar 2003
Posts: 28
P
Ameglian cow
OP Offline
Ameglian cow
P
Joined: Mar 2003
Posts: 28
Hi!

I request the away info from other nicks. For yourself it's $awaymsg but how receive i the awaymessage from the nick buddy?
$awaymsg(buddy) don't work

buddy is away: @t work
I would like to receive @t work
Can anyone help me? Thank you!

Best regards

#71037 11/02/04 05:31 PM
Joined: Jan 2004
Posts: 9
W
Nutrimatic drinks dispenser
Offline
Nutrimatic drinks dispenser
W
Joined: Jan 2004
Posts: 9
you could do a /ctcp $nick away [or whatever you want] cause on ctcp most irc cleints give the away and you can do a raw to catch it and put it in a hash table and use it later wth a function...

#71038 11/02/04 07:40 PM
Joined: Dec 2003
Posts: 7
N
Nutrimatic drinks dispenser
Offline
Nutrimatic drinks dispenser
N
Joined: Dec 2003
Posts: 7
;Raw Catcher
raw 301:*:{
set %away_ [ $+ [ $1 ] ] $3-
}
alias checkaway {
ctcp $1 away
.timercheck 1 2 /awaymsg $1
}
alias awaymsg {
echo $active %away_ [ $+ [ $1 ] ]
}

Seems To Work Fine For Me, You Will Probably Need To Edit For Purpose, But This One Just Gets The Away Reason When You Type /checkaway nickname

Hope This Helps m8


Link Copied to Clipboard