Quote:
You could just do:
Code:
on @*:deop:#: {
  if ($nick != $me && $address($nick,2) != [color:red]some_address_in_#2_mask_format[/color] && $address($nick,2) != [color:red]some_other_address[/color]) {
    [color:blue]; Insert re-op and deop code here.[/color]
  }
}

uh.. thanks too,but can i ask-what'S the #2 mask format?

/help $mask

$address($nick,2) <-- the 2 in that outputs the address in the format described in the table in the help file for $mask.

this string if ($nick != $me && $address($nick,2) != some_address_in_#2_mask_format && $address($nick,2) != some_other_address)
well I wouldnt do it that way, even though it may work I would conform to what is in the help files as when updates to mIRC come along shortcuts like that often no longer work
/help &&

Quote:

Combining comparisons
You can combine comparisons by using the && for AND and || for OR characters.

if (($1 > 0) && ($1 < 10)) {