to disable deletion for users with more than 50 posts add change the code around
$error = "Cannot decimate mods/admins!!!";
to
PHP Code:
if(($spammerinfo['usergroupid'] == 6) || ($spammerinfo['usergroupid'] == 5) || ($spammerinfo['usergroupid'] == 7))
{
$error = "Cannot decimate mods/admins!!!";
}
if ($spammerinfo[posts]>50)
{
$error = "This user has too many posts. Are you sure he's a spammer?";
}