You can use this code for super moderators in the thief script:
PHP Code:
// Don't allow stealing from supermods
$supermod = $DB_site->query_first("SELECT userid from " . TABLE_PREFIX . "user where usergroupid = 5 and userid = $thefted[userid]");
if (isset($supermod['userid'])) {
$message = "You may not steal from a super moderator!";
uttstore_print_end_message($message);
}