mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: May 2005
Posts: 2
C
conor45 Offline OP
Bowl of petunias
OP Offline
Bowl of petunias
C
Joined: May 2005
Posts: 2
Hello,

I was wondering if someone could tell me how, when I set my status to away, and someone messages me privatly, that it automatically sends a response to the private box. Right now it works so that in the server box the message goes back. Right now I just have the basic irc installed, no extra scripts.

Thank you.

Joined: Feb 2005
Posts: 681
M
Fjord artisan
Offline
Fjord artisan
M
Joined: Feb 2005
Posts: 681
on *:TEXT:*:?: {
if ($away) {
msg $nick Sorry, I'm away right now.
window -c $nick
}
}

Joined: May 2005
Posts: 8
N
Nutrimatic drinks dispenser
Offline
Nutrimatic drinks dispenser
N
Joined: May 2005
Posts: 8
You could try an; on 1:OPEN:?:/ Command For EG,
[code]on 1:OPEN:?:{
if ($away) { .Notice $nick I Am Away At The Moment }
if (!$away) { .Notice $nick I Am Here }
} [code]

Joined: May 2005
Posts: 2
C
conor45 Offline OP
Bowl of petunias
OP Offline
Bowl of petunias
C
Joined: May 2005
Posts: 2
thanks, but where would i put this in at?

thank you.

Joined: Oct 2003
Posts: 132
D
DV8 Offline
Vogon poet
Offline
Vogon poet
D
Joined: Oct 2003
Posts: 132
In your Remotes Editor (Alt+R).

Joined: Nov 2003
Posts: 2,327
T
Hoopy frood
Offline
Hoopy frood
T
Joined: Nov 2003
Posts: 2,327
Code:
on ^*:open:?:{
  if ($away) {
    .notice $nick I am away right now ( $+ $awaymsg $+ )
    halt
  }
}


New username: hixxy

Link Copied to Clipboard