|
|
Joined: Dec 2008
Posts: 1,515
Hoopy frood
|
OP
Hoopy frood
Joined: Dec 2008
Posts: 1,515 |
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!
|
|
|
|
Joined: Jun 2003
Posts: 994
Hoopy frood
|
Hoopy frood
Joined: Jun 2003
Posts: 994 |
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.
I refuse to engage in a battle of wits with an unarmed person.
|
|
|
|
Joined: Jul 2006
Posts: 4,180
Hoopy frood
|
Hoopy frood
Joined: Jul 2006
Posts: 4,180 |
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,515
Hoopy frood
|
OP
Hoopy frood
Joined: Dec 2008
Posts: 1,515 |
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!
|
|
|
|
Joined: Jun 2003
Posts: 994
Hoopy frood
|
Hoopy frood
Joined: Jun 2003
Posts: 994 |
/me bows to superior intellect
I refuse to engage in a battle of wits with an unarmed person.
|
|
|
|
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,515
Hoopy frood
|
OP
Hoopy frood
Joined: Dec 2008
Posts: 1,515 |
Really? OHH also this could be done and with the /set and with other -e commands.
|
|
|
|
Joined: Oct 2009
Posts: 24
Ameglian cow
|
Ameglian cow
Joined: Oct 2009
Posts: 24 |
Using "/ignore -r" will clear the Ignore list.
|
|
|
|
Joined: Dec 2008
Posts: 1,515
Hoopy frood
|
OP
Hoopy frood
Joined: Dec 2008
Posts: 1,515 |
i don't want to clear the hole list but one that i have set with the -e parameter .
|
|
|
|
Joined: Oct 2003
Posts: 3,918
Hoopy frood
|
Hoopy frood
Joined: Oct 2003
Posts: 3,918 |
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".
- argv[0] on EFnet #mIRC - "Life is a pointer to an integer without a cast"
|
|
|
|
Joined: Oct 2012
Posts: 164
Vogon poet
|
Vogon poet
Joined: Oct 2012
Posts: 164 |
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-
}
|
|
|
|
|
|