Not bad.
That line should be SmartSetupEx(126, True, True, False);
and. Based on my calculations:
SCAR Code:
program PhailCalculation;
{
Double Post = 2.5 Phails
Triple Post = 5 Phails
Quadruple Post = 7.5 Phails
Quintuple Post = 10 Phails
Sextuple Post = 15 Phails
Septuple Post = 20 Phails
One Hundred Posts = 1000 Phails
}
const
PhailureAmount = 15;
Username = 'buggyboy33';
function FailureCalculator(Phails: extended): extended;
var PhailInt: extended;
begin
if (PhailureAmount = 0) or (PhailureAmount < 2.5) then
begin
WriteLn('Enter an amount stated above.');
TerminateScript;
end;
if PhailureAmount <= 5 then
begin
PhailInt := (((Phails * 75) + 6) * 9) / 9;
Result := Phails * PhailInt;
end else
PhailInt := (((Phails * 25) + 6) * 9) / 9;
Result := Phails * PhailInt;
end;
begin
WriteLn(Username + ' is ' + FloatToStr(Ceil(((FailureCalculator(PhailureAmount) / 10120)) * 100)) + '% complete phail.');
end.
You are 57% phail for posting 6 times.