ID:155274
 
How would i do a 10% increase of my exp?

I'm not rather good at exponents :/

src.EXP*=1.1
In response to Xyphon101
X * 10% = lesser than X

Your equation is stating that if i take 5 times .10 = .50

that is not what i am looking for.

I am looking for an increase.

But i guess if i take it from there...


src.Exp=0
src.Maxexp+=src.Maxexp*1.1

guess that would work :/
In response to Komuroto
src.EXP*=1.1 does not make it less.. What are you talking about?

Just try it. If EXP=100, and you do src.EXP*=1.1, the EXP will then be 110.

You are multiplying it by 1.1, not by 0.1, do you know anything about simple mathematics? The least you could have done is tried out my equation before telling me it doesn't work.
In response to Komuroto
Komuroto wrote:
X * 10% = lesser than X

Your equation is stating that if i take 5 times .10 = .50

that is not what i am looking for.

I am looking for an increase.

But i guess if i take it from there...


src.Exp=0
src.Maxexp+=src.Maxexp*1.1

guess that would work :/


actually now that i'm thinking about it, a better method would to increase it by 1.10 not .10

how do i do an exponent like : 2 and 1 / 10 's
In response to Komuroto
Komuroto wrote:
actually now that i'm thinking about it, a better method would to increase it by 1.10 not .10

how do i do an exponent like : 2 and 1 / 10 's
src.EXP*=2.1
In response to Xyphon101
I miss read what you wrote.

I replaced your equation with 10% instead of 1.1, it was a mistake, dont go burning me to the stake for it....
In response to Komuroto
Komuroto wrote:
I miss read what you wrote.

I replaced your equation with 10% instead of 1.1, it was a mistake, dont go burning me to the stake for it....

Which is why I said to try out my equation before telling me I'm wrong. I didn't burn you at the stake, I just told you not to tell me my equation is wrong when you didn't even try it.
In response to Xyphon101
because i misread it.


I thought it said 10% which 100 * 10% =10

No reason to try that form,

but now that i re-read it, i apologize for my mistake.

No harm no foul.