XP reduction.

ravish123

Gold Supporter
Senior User
279
2015
78
When Patch 4.3.0 was released, the XP required to get from 71 -> 80 was reduced by 33% posted here: http://us.battle.net/wow/en/game/patch-notes/4-3-0
Improved Outland & Northrend Quest Flow
The amount of experience needed to gain levels 71 through 80 has been reduced by approximately 33%.

This should correct the values for v10

Code:
UPDATE `player_xp_for_level` SET `xp_for_next_level`= 1074814  WHERE `lvl`= 75;
UPDATE `player_xp_for_level` SET `xp_for_next_level`= 1085869  WHERE `lvl`= 76;
UPDATE `player_xp_for_level` SET `xp_for_next_level`= 1097058  WHERE `lvl`= 77;
UPDATE `player_xp_for_level` SET `xp_for_next_level`= 1108113  WHERE `lvl`= 78;
UPDATE `player_xp_for_level` SET `xp_for_next_level`= 1119436  WHERE `lvl`= 79;
UPDATE `player_xp_for_level` SET `xp_for_next_level`= 1020946  WHERE `lvl`= 70;
UPDATE `player_xp_for_level` SET `xp_for_next_level`= 1031532  WHERE `lvl`= 71;
UPDATE `player_xp_for_level` SET `xp_for_next_level`= 1042319  WHERE `lvl`= 72;
UPDATE `player_xp_for_level` SET `xp_for_next_level`= 1053106  WHERE `lvl`= 73;
UPDATE `player_xp_for_level` SET `xp_for_next_level`= 1063893  WHERE `lvl`= 74;

I've checked databases from 3.3.5 and the values on the v10 repack are the exact same. So reducing the numbers should fix this issue.
 

ExO

Admin
5,088
2014
1,452
Nice! Will review the fixes and import them shortly.

Keep it going Ravish, nice to see your github repository by the way!
 

ExO

Admin
5,088
2014
1,452
Thanks for the bug remind, only thing is that according to some other sources, the values are supposed to be like this:
INSERT INTO `player_xp_for_level` (`lvl`, `xp_for_next_level`) VALUES (71, 1231680);
INSERT INTO `player_xp_for_level` (`lvl`, `xp_for_next_level`) VALUES (72, 1244560);
INSERT INTO `player_xp_for_level` (`lvl`, `xp_for_next_level`) VALUES (73, 1257440);
INSERT INTO `player_xp_for_level` (`lvl`, `xp_for_next_level`) VALUES (74, 1270320);
INSERT INTO `player_xp_for_level` (`lvl`, `xp_for_next_level`) VALUES (75, 1283360);
INSERT INTO `player_xp_for_level` (`lvl`, `xp_for_next_level`) VALUES (76, 1296560);
INSERT INTO `player_xp_for_level` (`lvl`, `xp_for_next_level`) VALUES (77, 1309920);

Imported the data.
 
Top