View Single Post
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,244
Thanks: 59
Thanked 3,998 Times in 3,967 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