This code should go directly below the code on the previous page. This block of code is used to calculate Arena scores for teams that have a rating of 1501 or above. When we echo the points the player will receive, we have to remember that you only get 88% of the points for a 3v3 and 76% for a 2v2. Only a 5v5 receives the full points.
if ($arena_score > 1500)
{$total = (1511.26/(1+1639.28* pow(2.71818,(-0.00412 * $arena_score))));
Echo " <b>Your Score is $arena_score <br></b>";
Echo "<b>5v5:</b> " . floor($total) ." points <br>";
Echo "<b>3v3:</b> ". floor($total*.88) ." points <br>";
Echo "<b>2v2:</b> ". floor($total*.76) ." points <br>";
}