Go Back   CodingForums.com > :: Client side development > JavaScript programming

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 01-23-2013, 09:24 PM   PM User | #16
FrostWyrmWraith
New Coder

 
Join Date: Jan 2013
Posts: 12
Thanks: 0
Thanked 0 Times in 0 Posts
FrostWyrmWraith can only hope to improve
Okay, then please explain where you got 50. It should quite clearly be 2500 because as I said earlier, I calculated these based on a post count of 50.

I find it funny that you claim to be a mathematician but get these simple things utterly wrong.
FrostWyrmWraith is offline   Reply With Quote
Old 01-23-2013, 09:29 PM   PM User | #17
Airblader
Regular Coder

 
Join Date: Jan 2013
Location: Germany
Posts: 359
Thanks: 3
Thanked 43 Times in 43 Posts
Airblader can only hope to improve
Oops – in my head I just had EXP = 50 instead of EXP = 50 * 50. Well, in any case that would make it be 500. Not the 200 you for whatever reason expect.

However, comments like
Quote:
I find it funny that you claim to be a mathematician but get these simple things utterly wrong.
show me I don't need to waste any more time trying to understand horrible code. It's fascinating what attitude people have towards others who try to help them for free(!). I don't need to prove to you that I studied mathematics, just as I don't need to listen to you accusing me of lying. Maybe others will continue to help you, although I certainly don't hope that they will.

Bye.

Last edited by Airblader; 01-23-2013 at 09:34 PM..
Airblader is offline   Reply With Quote
Old 01-23-2013, 09:46 PM   PM User | #18
FrostWyrmWraith
New Coder

 
Join Date: Jan 2013
Posts: 12
Thanks: 0
Thanked 0 Times in 0 Posts
FrostWyrmWraith can only hope to improve
Help me? You've been nothing but condescending this whole time. I'm new at this, and your attitude has not been helping.

And no, by the way, 500*1.15^12 does not equal 3000. Nice try though?
FrostWyrmWraith is offline   Reply With Quote
Old 01-23-2013, 09:51 PM   PM User | #19
Airblader
Regular Coder

 
Join Date: Jan 2013
Location: Germany
Posts: 359
Thanks: 3
Thanked 43 Times in 43 Posts
Airblader can only hope to improve
http://www.wolframalpha.com/input/?i...5E12%29+-+2500
Airblader is offline   Reply With Quote
Old 01-23-2013, 10:30 PM   PM User | #20
Old Pedant
Supreme Master coder!

 
Old Pedant's Avatar
 
Join Date: Feb 2009
Posts: 23,195
Thanks: 59
Thanked 3,996 Times in 3,965 Posts
Old Pedant is a name known to allOld Pedant is a name known to allOld Pedant is a name known to allOld Pedant is a name known to allOld Pedant is a name known to allOld Pedant is a name known to all
Okay...
Code:
var xpup = (xneeded * Math.ceil(Math.pow(1.15, plevel)))
var showxp= (xpup - (xneeded * Math.ceil(Math.pow(1.15, plevel-1))))
NewCode =  topR + midR + name + ": " + sign +" "+ plevel + "<BR> XP: "+ (EXP-showxp) +"<BR> Experience needed: " +  (xpup-EXP)+ "<BR>Overall Experience:" + (xneeded * EXP / xneeded) +"<br><!-- placeholder --><br><br>"
So
Code:
xpup = 500 * Math.ceil( Math.pow(1.15, 12) ) ==>>
xpup = 500 * Math.ceil( 5.35 ) ==>>
xpup = 500 * 6 ==>>
xpup = 3000

showxp= (xpup - (xneeded * Math.ceil(Math.pow(1.15, plevel-1)))) ==>>
showxp = (3000 - (500 * Math.ceil( Math.pow( 1.15, 11 ) ) ) ) ==>>
showxp = (3000 - (500 * Math.ceil( 4.65 ) ) ) ==>>
showxp = (3000 - (500 * 5) ) ==>>
showxp = 3000 - 2500 ==>>
showxp = 500

NewCode =  "...other stuff..."+ plevel 
        + "<BR> XP: "+ (EXP-showxp) 
        + "<BR> Experience needed: " +  (xpup-EXP)
        + "<BR>Overall Experience:" + (xneeded * EXP / xneeded) + ...
NewCode =  "...other stuff..."+ 12
        + "<BR> XP: "+ (2500-500) 
        + "<BR> Experience needed: " +  (3000-500)
        + "<BR>Overall Experience:" + (500 * 2500 / 500) + ...
NewCode =  "...other stuff..."+ 12
        + "<BR> XP: "+ 2000 
        + "<BR> Experience needed: " +  2500
        + "<BR>Overall Experience:" + 2500 + ...
This expression is especially silly:
(xneeded * EXP / xneeded)

Pointless. The two uses of xneeded cancel out, so the value is always simply EXP.
__________________
An optimist sees the glass as half full.
A pessimist sees the glass as half empty.
A realist drinks it no matter how much there is.
Old Pedant is offline   Reply With Quote
Old 01-23-2013, 10:32 PM   PM User | #21
Old Pedant
Supreme Master coder!

 
Old Pedant's Avatar
 
Join Date: Feb 2009
Posts: 23,195
Thanks: 59
Thanked 3,996 Times in 3,965 Posts
Old Pedant is a name known to allOld Pedant is a name known to allOld Pedant is a name known to allOld Pedant is a name known to allOld Pedant is a name known to allOld Pedant is a name known to all
Quote:
Originally Posted by FrostWyrmWraith View Post
And no, by the way, 500*1.15^12 does not equal 3000.
True. But that is *NOT* what your JavaScript says or does.

It reads:
Quote:
var xpup = 500 * Math.ceil( Math.pow(1.15, 12) );
And because of the Math.ceil( ) in there, xpup *DOES* then equal 3000.

500*1.15^12 is actually 2675.1250527368555908203125
__________________
An optimist sees the glass as half full.
A pessimist sees the glass as half empty.
A realist drinks it no matter how much there is.

Last edited by Old Pedant; 01-23-2013 at 10:36 PM..
Old Pedant is offline   Reply With Quote
Old 01-23-2013, 11:59 PM   PM User | #22
FrostWyrmWraith
New Coder

 
Join Date: Jan 2013
Posts: 12
Thanks: 0
Thanked 0 Times in 0 Posts
FrostWyrmWraith can only hope to improve
The (xneeded * EXP/xneeded) was there in the original coding.

Okay, so my dumb head head thought it was rounding it up to 2700. Actually I'm not sure where I got that impression, to be honest. Thank you for specifying why was becoming 3000.

Is there a way to make it round up just to the next number divisible by 50?
FrostWyrmWraith is offline   Reply With Quote
Old 01-24-2013, 12:26 AM   PM User | #23
Old Pedant
Supreme Master coder!

 
Old Pedant's Avatar
 
Join Date: Feb 2009
Posts: 23,195
Thanks: 59
Thanked 3,996 Times in 3,965 Posts
Old Pedant is a name known to allOld Pedant is a name known to allOld Pedant is a name known to allOld Pedant is a name known to allOld Pedant is a name known to allOld Pedant is a name known to all
var xpup = 50 * Math.ceil( 500 * Math.pow(1.15, plevel) / 50 );

For a plevel of 12, that give xpup of 2700.

var showxp= xpup - 50 * Math.ceil( 500 * Math.pow(1.15, plevel-1) / 50 );

Again, for a plevel of 12 (with xpup of 2700) that will do

var showxp = 2700 - 2350;
or
showxp = 350
__________________
An optimist sees the glass as half full.
A pessimist sees the glass as half empty.
A realist drinks it no matter how much there is.
Old Pedant is offline   Reply With Quote
Old 01-24-2013, 12:31 AM   PM User | #24
Old Pedant
Supreme Master coder!

 
Old Pedant's Avatar
 
Join Date: Feb 2009
Posts: 23,195
Thanks: 59
Thanked 3,996 Times in 3,965 Posts
Old Pedant is a name known to allOld Pedant is a name known to allOld Pedant is a name known to allOld Pedant is a name known to allOld Pedant is a name known to allOld Pedant is a name known to all
And then
Code:
NewCode =  "...other stuff..."+ plevel 
        + "<BR> XP: "+ (EXP-showxp) 
        + "<BR> Experience needed: " +  (xpup-EXP)
        + "<BR>Overall Experience:" + (xneeded * EXP / xneeded) + ...
NewCode =  "...other stuff..."+ 12
        + "<BR> XP: "+ (2500-350) 
        + "<BR> Experience needed: " +  (2700-2500)
        + "<BR>Overall Experience:" + (500 * 2500 / 500) + ...
NewCode =  "...other stuff..."+ 12
        + "<BR> XP: "+ 2150 
        + "<BR> Experience needed: " +  200
        + "<BR>Overall Experience:" + 2500 + ...
__________________
An optimist sees the glass as half full.
A pessimist sees the glass as half empty.
A realist drinks it no matter how much there is.
Old Pedant is offline   Reply With Quote
Old 01-24-2013, 01:50 AM   PM User | #25
FrostWyrmWraith
New Coder

 
Join Date: Jan 2013
Posts: 12
Thanks: 0
Thanked 0 Times in 0 Posts
FrostWyrmWraith can only hope to improve
Okay, I actually think I get that. It worked, thanks!
FrostWyrmWraith is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 10:48 PM.


Advertisement
Log in to turn off these ads.