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 1500 or less. Again, 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.
else
{$total = ($arena_score *.22) + 14;
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>";
}
?>