|
|
Joined: Dec 2008
Posts: 1,483
Hoopy frood
|
OP
Hoopy frood
Joined: Dec 2008
Posts: 1,483 |
Hello,
I wanna to suggest an /ignore parameter that will remove the setted ignore from the list when the mIRC exit, same as /set -e
- Thanks!
|
|
|
|
CtrlAltDel
|
CtrlAltDel
|
Why not use -u to remove them? The /ignore command /ignore [-lrpcntikdwxu#] <on|off|nick/address> [type] [network] Where p = private, c = channel, n = notice, t = ctcp, i = invite, k = control codes, d = dccs. The -u# switch specifies a delay in seconds after which the ignore is automatically removed.
|
|
|
|
Joined: Jul 2006
Posts: 4,020
Hoopy frood
|
Hoopy frood
Joined: Jul 2006
Posts: 4,020 |
Because -u doesn't achieve anything, he not going to calculate the time when he is going to exit mIRC, is he? he would be removing ignores in the on exit event, just like for /set, before -e was added, this suggestion is just fine.
Last edited by Wims; 13/10/13 02:54 PM.
#mircscripting @ irc.swiftirc.net == the best mIRC help channel
|
|
|
|
Joined: Dec 2008
Posts: 1,483
Hoopy frood
|
OP
Hoopy frood
Joined: Dec 2008
Posts: 1,483 |
Because -u doesn't achieve anything, he not going to calculate the time when he is going to exit mIRC, is he? he would be removing ignores in the on exit event, just like for /set, before -e was added, this suggestion is just fine. That exactly Wims!
|
|
|
|
CtrlAltDel
|
CtrlAltDel
|
/me bows to superior intellect
|
|
|
|
Joined: Feb 2009
Posts: 25
Ameglian cow
|
Ameglian cow
Joined: Feb 2009
Posts: 25 |
Hi,
isnn't the on exit event in opposite to the on start event the right place to do some cleanups for mIRC?
You could do the /ignore -r for the users you want there.
BR WKN
|
|
|
|
Joined: Dec 2008
Posts: 1,483
Hoopy frood
|
OP
Hoopy frood
Joined: Dec 2008
Posts: 1,483 |
Really? OHH also this could be done and with the /set and with other -e commands.
|
|
|
|
Scakk
|
Scakk
|
Using "/ignore -r" will clear the Ignore list.
|
|
|
|
Joined: Dec 2008
Posts: 1,483
Hoopy frood
|
OP
Hoopy frood
Joined: Dec 2008
Posts: 1,483 |
i don't want to clear the hole list but one that i have set with the -e parameter .
|
|
|
|
Joined: Oct 2003
Posts: 3,641
Hoopy frood
|
Hoopy frood
Joined: Oct 2003
Posts: 3,641 |
To clarify, westor wants to ignore users only for the duration of his mIRC session.
This would be pretty tough to script reliably. It's doable, but a switch would be pretty useful. I could see a general use case for this kind of thing, where you want to ignore someone "for a while but not forever".
|
|
|
|
Deega
|
Deega
|
It's a good idea  Easy enough to script a workable alternative until (if) it gets added. Replace -e with -u99999999 to ignore them for 3+ years.  Ignores set with -u<N> are not (usually) written to file and are unset when mirc exits. alias ignore {
if -*e* iswm $1 && -*u* !iswm $1 { $+(!,$iif(!$show,.),ignore $1,u99999999) $2- }
else $+(!,$iif(!$show,.),ignore) $1-
}
|
|
|
|
|
|