SiMka Posted November 20, 2010 Posted November 20, 2010 Hi, Just for now I understand most of the "things" and how they should and work. For now I just don't understand the levels and exps. I saw that the exp_needed is something like this: ((LEVEL + 1) * (LEVEL + 1) * (LEVEL +1) * 2.2) php as: $ir['exp_needed']=(int) (($ir['level']+1)*($ir['level']+1)*($ir['level']+1)*2.2); , so as Level 1 there should be ((1 +1) * (1 + 1) * (1 + 1) * 2.2) = 2.2 exp needed, but the 1 exp is 5% and 2 exp is 11% in overall status. So, my question is: Can somebody please explain to me how the levels and stuff works. Thanks. Quote
W3Theory || Peter Posted November 20, 2010 Posted November 20, 2010 Hello, Well the main thing is you are doing the math wrong. level=1 so it's 1+1=2 not one which is what you are saying it is, so in the it is really 2*2*2*2.2 = 17.6 xp need not 2.2. W3 Theory Quote
SiMka Posted November 20, 2010 Author Posted November 20, 2010 Oh sorry, stupid me, I multiply the stuff what should be a sum.. (Level + 1) stuff.. Guess that's too much work for me today.. Thanks for the input :) Quote
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.