mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Jun 2013
Posts: 4
C
Chiyo Offline OP
Self-satisified door
OP Offline
Self-satisified door
C
Joined: Jun 2013
Posts: 4
To reproduce:

Options > IRC > Options > "Other" section.
Check "Cancel away on activity".
Set yourself as away (/away Test)
Speak in a channel, or private message.
The /away isn't removed.

Joined: Aug 2013
Posts: 81
I
Babel fish
Offline
Babel fish
I
Joined: Aug 2013
Posts: 81
Hm, works for me. o_O

Joined: Oct 2012
Posts: 164
D
Vogon poet
Offline
Vogon poet
D
Joined: Oct 2012
Posts: 164
If you have an input event which /halts the default output this option will also not be processed.

If this is the case, you can add this line to your input event (before the /halt) to mark yourself as back (if you are marked away) on any input to channel/query windows.
Code:
  if ($away) && (# || $query($active)) { away }


OR

If you want the setting in 'Options' to be respected, add this instead of the above.
Code:
  if ($away) && (# || $query($active)) { check.away }
and also add this alias
Code:
alias -l check.away {
  saveini
  if ($gettok($readini($mircini,Options,n0),9,44)) { away }
}


Last edited by Deega; 27/11/13 07:48 AM. Reason: Added OR.....etc.

Link Copied to Clipboard