snaketooth22 Posted August 13, 2011 Share Posted August 13, 2011 Is there anyway you can slow down the rate that people level up ?????? ,. ,. ?? Quote Link to comment Share on other sites More sharing options...
Danny696 Posted August 13, 2011 Share Posted August 13, 2011 Global_func.php -> function check_level() -> edit the formula there. Also, go through crimes, attacking etc and give less exp Quote Link to comment Share on other sites More sharing options...
Anonymous Posted August 13, 2011 Share Posted August 13, 2011 Assuming you are referring to the same code: $ir['exp_needed']=(int) (($ir['level']+1)*($ir['level']+1)*($ir['level']+1)*2.2); Then yes, that poorly written expression can be re-written as $ir['exp_needed'] = floor(pow(($ir['level'] + 1), 3) * 2.2); You have two values (3 and 2.2) which can be manipulated to suit. Quote Link to comment Share on other sites More sharing options...
snaketooth22 Posted August 13, 2011 Author Share Posted August 13, 2011 Assuming you are referring to the same code:$ir['exp_needed']=(int) (($ir['level']+1)*($ir['level']+1)*($ir['level']+1)*2.2); Then yes, that poorly written expression can be re-written as $ir['exp_needed'] = floor(pow(($ir['level'] + 1), 3) * 2.2); You have two values (3 and 2.2) which can be manipulated to suit. So lets say i wanted to cut the leveling speed down by 75%,. what numbers would i replace the 3 and the 2.2 with ?? Quote Link to comment Share on other sites More sharing options...
snaketooth22 Posted August 13, 2011 Author Share Posted August 13, 2011 1 & 0.5 ?? Quote Link to comment Share on other sites More sharing options...
W3Theory || Peter Posted August 13, 2011 Share Posted August 13, 2011 It's simple math man... Quote Link to comment Share on other sites More sharing options...
Anonymous Posted August 13, 2011 Share Posted August 13, 2011 Level Experience Needed ----- -------------------- 1 (1+1)^3*2.2 => 17.6 2 (2+1)^3*2.2 => 59.4 3 (3+1)^3*2.2 => 140.8 4 (4+1)^3*2.2 => 275.0 5 (5+1)^3*2.2 => 475.0 So what figure do you think needs changing? Plug in different values, see what works. Make sure your experience needed never exceeds 2,000,000,000 and your level ideal never exceeds 60~120 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.