1. Home
  2. Computing & Technology
  3. PHP / MySQL

World of Warcraft PHP Arena Points Calculator

By Angela Bradley, About.com

3 of 4

Scores Of 1500 or Below

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>";
}
?>
Explore PHP / MySQL
About.com Special Features

Stay connected and entertained with reviews on tips on the latest HDTVs, cellphones and more. More >

Easy ways to connect two computers for networking purposes. More >

  1. Home
  2. Computing & Technology
  3. PHP / MySQL
  4. Step By Steps
  5. World of Warcraft Arena Caclulator PHP Script

©2009 About.com, a part of The New York Times Company.

All rights reserved.