(((Hours Logged In - 10)/7.5)^2)+1.1
Real Averages of the Xp Bonus Multiplier based on a sampling rate of 10/hour.
What does this show? On Average, in Hour 0 to Hour 1 you will gain 2.7062 times more exp than normal. In Hour 1 to Hour 2 this will decrease to 2.386222 and so on. Should help will any skilling forecasting you all do lol.
Hour 0 - Hour 1: 2.706222
Hour 1 - Hour 2: 2.386222
Hour 3 - Hour 4: 2.101778
Hour 4 - Hour 5: 1.852889
Hour 5 - Hour 6: 1.639556
Hour 6 - Hour 7: 1.461778
Hour 7 - Hour 8: 1.319556
Hour 8 - Hour 9: 1.212889
Hour 9 - Hour 10: 1.141778
Hour 10 - Hour 11: 1.106222
Script
Wrote this to output the !calc code to get the average multiplier gain for each hour. If I knew exatly how often the function decreased (I assumed every 6 minutes here, would more likely be 30/60 seconds though.
<?
$start = $_GET['start'];
$limit = $_GET['limit'];
echo '!calc (';
for($counter = $start; $counter <= $limit; $counter++) {
$timePlayed = $counter / 10;
echo '((((' . $timePlayed . '- 10)/7.5)^2)+1.1)';
if($counter != $limit) {
echo '+';
} else {
echo ')/11';
}
}
?>





















