Simba Code:
var
GAINED_EXP,
EXP_PER_HR,
TIME_RAN: integer;
begin
clearDebug;
GAINED_EXP := 800000; // 800k exp gained
TIME_RAN := (1000 * 60 * 60 * 14); // theoretical 14 hours
EXP_PER_HR := Round( (3600*GAINED_EXP) / ((TIME_RAN)/1000) );
writeln('exp per hr 1, x[Warrior]x3500''s post:');
writeln(EXP_PER_HR);
writeln('');
writeln('');
EXP_PER_HR := Round(GAINED_EXP * (3600.0 / (TIME_RAN / 1000.0)));
writeln('exp per hr 2, Shay'' post:');
writeln(EXP_PER_HR);
end.
results (for me);
Code:
exp per hr 1, x[Warrior]x3500's post:
-28074
exp per hr 2, Shay' post:
57143
Successfully executed.