diff --git a/attackplace.php b/attackplace.php index fec0299..9cfdaf6 100644 --- a/attackplace.php +++ b/attackplace.php @@ -41,7 +41,7 @@ if ($placehp < 0) { } // Update the user's health and level -$exp = pow(pow(floor($user['level']) + 1, 2), -0.9); +$exp = pow(pow(floor($user['level']) + 1, 2), -1.2); $userlevel = $user['level'] + $exp; // If the new level is a whole int bigger than the current $dolevelup = false; diff --git a/claimplace.php b/claimplace.php index 17909b6..c5cf929 100644 --- a/claimplace.php +++ b/claimplace.php @@ -29,7 +29,7 @@ if ($userhp < 0) { } // Update the user's health and level -$exp = pow(pow(floor($user['level']) + 1, 2), -0.9); +$exp = pow(pow(floor($user['level']) + 1, 2), -1.2); $userlevel = $user['level'] + $exp; // If the new level is a whole int bigger than the current $dolevelup = false;