Quote:
Originally Posted by t3aseFP
To those complaining about removing warnings but still having the user come up banned, I found the quick as hell fix after reading through all of the posts here trying to find an answer. Look in warn.php and find the following:
Code:
if ($Warn['w_adjust'] == 'minus')
{
$Warn['inferno_warn_level'] += $Warn['w_amount'];
}
replace with:
Code:
if ($Warn['w_adjust'] == 'minus')
{
$Warn['inferno_warn_level'] -= $Warn['w_amount'];
}
Save, reupload if needed. May need to go to Inferno Warning System in vB's drop down menu so it reloads. One site I had it on needed that last step, the other didn't.
|
cant find that code in
warn.php file, all i can see is this...
PHP Code:
if ($Warn['w_adjust'] == 'plus')
{
$Warn['inferno_warn_level'] -= $Warn['w_amount'];
}
else
{
$Warn['inferno_warn_level'] += $Warn['w_amount'];
}