mIRC Home    About    Download    Register    News    Help

Print Thread
#79994 20/04/04 06:58 PM
Joined: Apr 2004
Posts: 1
D
Mostly harmless
OP Offline
Mostly harmless
D
Joined: Apr 2004
Posts: 1
How do I put someone on Ignore, so that they cannot reach me by DCC or Query by changing their nickname? I know I can include their address in the command, but don't understand the instructions in the Mirc Help section of the program.

Thanks to anyone who will show me the exact command line.

dotcom

#79995 20/04/04 07:16 PM
Joined: Jun 2003
Posts: 5,024
M
Hoopy frood
Offline
Hoopy frood
M
Joined: Jun 2003
Posts: 5,024
You can use /ignore nickname -pd 3 - the '3' ignores the *!*user@hostname for a user. This will only work if the nickname is currently online. If they are not, then you will need to write out the *!*user@hostname manually (if you know it) - i.e. /ignore -pd *!*user@hostname.

The -d switch ignores DCCs.
The -p switch ignores private query messages.
You may wish to use -n aswell to ignore private notices.

There are a total of 9 different numbers you can use to ignore different types of hostmasks as follows:

0: *!user@host
1: *!*user@host
2: *!*@host
3: *!*user@*.host
4: *!*@*.host
5: nick!user@host
6: nick!*user@host
7: nick!*@host
8: nick!*user@*.host
9: nick!*@*.host

You can manually edit ignores by going to the ignore dialog:

ALT+B > Control > Ignore (Choose 'Ignore' from the drop down list)

Highlight an ignore and click on 'Edit' and then check/uncheck the different types of ignores you want to ignore the user for.

To list your ignores, type /ignore -l.

Hope this helps smile

Regards,


Mentality/Chris
#79996 20/04/04 08:29 PM
Joined: Dec 2002
Posts: 1,541
L
Hoopy frood
Offline
Hoopy frood
L
Joined: Dec 2002
Posts: 1,541
Actually there's more than that. 10 and above assign ? to numbers as a wildcard amtch instead of *. After yuou've signed on to a network, try this;

//echo -s 0 - $address($me,0) | //echo -s 1 - $address($me,1) | //echo -s 2 - $address($me,2) | //echo -s 3 - $address($me,3) | //echo -s 4 - $address($me,4) | //echo -s 5 - $address($me,5) | //echo -s 6 - $address($me,6) | //echo -s 7 - $address($me,7) | //echo -s 8 - $address($me,8) | //echo -s 9 - $address($me,9) | //echo -s 10 - $address($me,10) | //echo -s 11 - $address($me,11) | //echo -s 12 - $address($me,12) | //echo -s 13 - $address($me,13) | //echo -s 14 - $address($me,14) | //echo -s 15 - $address($me,15) | //echo -s 16 - $address($me,16) | //echo -s 17 - $address($me,17) | //echo -s 18 - $address($me,18) | //echo -s 19 - $address($me,19)

I did NOT use the "code" tag here since it's not needed and should copy/paste just fine. You'll see some repetition from 10 - 19 but there are a few more there that MAY work well for the original poster (as well as other people too)


Those who fail history are doomed to repeat it
#79997 20/04/04 08:33 PM
Joined: Feb 2004
Posts: 2,019
Hoopy frood
Offline
Hoopy frood
Joined: Feb 2004
Posts: 2,019
Hehe,

just a little optimization for your code, so that he can see the trees behind the bush:
Code:
 
alias addresses { var %x = 0 | while (%x < 20) { echo -a %x - $address($me,%x) | inc %x } }  


Put that in your remotes, and then type /addresses

Grtz


Gone.
#79998 20/04/04 08:36 PM
Joined: Jun 2003
Posts: 5,024
M
Hoopy frood
Offline
Hoopy frood
M
Joined: Jun 2003
Posts: 5,024
<blah>

Last edited by Mentality; 20/04/04 08:41 PM.

Mentality/Chris
#79999 20/04/04 08:38 PM
Joined: Feb 2004
Posts: 2,019
Hoopy frood
Offline
Hoopy frood
Joined: Feb 2004
Posts: 2,019
Nope, 10-19 shows numbers replaced by ?

This is what i got when i performed the alias i just posted:

0 - *!~cellka@Rizon-a9a2d23.3a0f8979.kuleuven.net
1 - *!*cellka@Rizon-a9a2d23.3a0f8979.kuleuven.net
2 - *!*@Rizon-a9a2d23.3a0f8979.kuleuven.net
3 - *!*cellka@*.3a0f8979.kuleuven.net
4 - *!*@*.3a0f8979.kuleuven.net
5 - Cellka!~cellka@Rizon-a9a2d23.3a0f8979.kuleuven.net
6 - Cellka!*cellka@Rizon-a9a2d23.3a0f8979.kuleuven.net
7 - Cellka!*@Rizon-a9a2d23.3a0f8979.kuleuven.net
8 - Cellka!*cellka@*.3a0f8979.kuleuven.net
9 - Cellka!*@*.3a0f8979.kuleuven.net
10 - *!~cellka@Rizon-a?a?d??.?a?f????.kuleuven.net
11 - *!*cellka@Rizon-a?a?d??.?a?f????.kuleuven.net
12 - *!*@Rizon-a?a?d??.?a?f????.kuleuven.net
13 - *!*cellka@Rizon-a?a?d??.?a?f????.kuleuven.net
14 - *!*@Rizon-a?a?d??.?a?f????.kuleuven.net
15 - Cellka!~cellka@Rizon-a?a?d??.?a?f????.kuleuven.net
16 - Cellka!*cellka@Rizon-a?a?d??.?a?f????.kuleuven.net
17 - Cellka!*@Rizon-a?a?d??.?a?f????.kuleuven.net
18 - Cellka!*cellka@Rizon-a?a?d??.?a?f????.kuleuven.net
19 - Cellka!*@Rizon-a?a?d??.?a?f????.kuleuven.net

Notice the difference? cool

Greetz


Gone.
#80000 20/04/04 08:40 PM
Joined: Jun 2003
Posts: 5,024
M
Hoopy frood
Offline
Hoopy frood
M
Joined: Jun 2003
Posts: 5,024
Oh, duh, silly me, I just noticed that my vhost has no numbers in it hence why I was getting hardly any different results.

As clarification, as I don't mind saying I do feel patronised, I was aware of the 10-19 mask numbers, I simply did not think of them for...whatever reasons lol (4hrs sleep maybe?)

Thanks for including that though smile

Regards,


Mentality/Chris
#80001 20/04/04 08:41 PM
Joined: Dec 2002
Posts: 1,541
L
Hoopy frood
Offline
Hoopy frood
L
Joined: Dec 2002
Posts: 1,541
LOL Awesome, Ill put that in it's place smile The one I posted was from a VERY old alias before I knew the three words "optimize your coding" LOL


Those who fail history are doomed to repeat it
#80002 20/04/04 08:43 PM
Joined: Dec 2002
Posts: 1,541
L
Hoopy frood
Offline
Hoopy frood
L
Joined: Dec 2002
Posts: 1,541
personally, I think it would be nice if these extra masks got put into the help file with a bit more explanation of the difference between * and ? wildcard matching, but that's just me.


Those who fail history are doomed to repeat it

Link Copied to Clipboard