Elitist Jerks
Register
Blogs
Forums


Go Back   Elitist Jerks » Player vs. Player

Reply
 
LinkBack Thread Tools
Old 09/25/07, 9:40 PM   #1
Cyn
Piston Honda
 
Cyn's Avatar
 
Night Elf Rogue
 
Frostmourne
2.2 Arena point formulas

Blizzard now have an arena calculator on their armory found here: The Armory, looking at the underlying code, we can find the new arena point formulas used for 2.2.

However, just comparing between mmo-champions 2.1 calculator, and blizzards new 2.2 calculator. A 2000 rating team in 2s and 3s goes up by 100, and about 30 in 5s.

Direct extract from http://www.wowarmory.com/layout/arena-calculator.xsl

Rating to Point formulas
function pointCalculator(theRating, theSize) {
	var thePenalty;
	if (theSize == 2)
		thePenalty = .24;
	else if (theSize == 3)
		thePenalty = .12;
	else
		thePenalty = 0;
	
	if (theRating <= 0) {
		return 0;
	} else if (theRating <= 1500) {
		temp = 0.22 * eval(theRating) + 14;
    	return Math.round(temp * (1 - thePenalty));
	} else {
		temp = 1511.26 / (1 + 1639.28 * Math.pow(2.71828, (-0.00412 * eval(theRating))));
    	return Math.floor(temp * (1 - thePenalty));
	}
}
English version:

2s get 76%, 3s get 88%, 5s get 100%

if your rating <= 1500
points = 0.22 * ( your rating ) + 14

if your rating > 1500
points = 1511.25 / (1 + 1639.26 * ( 2.71626 ^ (-0.00412*(your rating) ) ) )

or maybe that isn't quite "English", but anyway

Last edited by Cyn : 09/26/07 at 1:03 AM.

Offline
Reply With Quote
Old 09/26/07, 1:03 AM   #2
Cyn
Piston Honda
 
Cyn's Avatar
 
Night Elf Rogue
 
Frostmourne
Pulled out formulas from mmo-champion, and chucked the values in excel



Now those are 5v5 values, for 2s and 3s, the coefficients have risen as well, so they will see more of the benefit

Offline
Reply With Quote
Reply

Go Back   Elitist Jerks » Player vs. Player

Thread Tools

Similar Threads
Thread Thread Starter Forum Replies Last Post
Arena Point gain nerfs official Grailyn Player vs. Player 47 05/31/07 3:00 PM
Formulas of the downranking nerf. Nitz Public Discussion 3 02/20/07 8:38 AM
hit rating and crit rating formulas Curly Public Discussion 28 12/04/06 10:45 AM