Talk:Level Costs: Difference between revisions

From My Wiki
Jump to navigation Jump to search
imported>Widgeon
(New page: For what it's worth, here's the python script I used to generate the table: <pre> <nowiki> #!/usr/bin/python import math import locale def total_level_xp(level): return int(math.cei...)
 
imported>Arkalor
(moved Talk:Level Costs to Talk:Experience Points: Sub topic for main Experience Points page.)
 
(6 intermediate revisions by 2 users not shown)
Line 1: Line 1:
For what it's worth, here's the python script I used to generate the table:
#REDIRECT [[Talk:Experience Points]]
 
<pre>
<nowiki>
#!/usr/bin/python
 
import math
import locale
 
def total_level_xp(level):
    return int(math.ceil( ((level + 5) ** 5 - (6 ** 5)) / 9.))
 
def next_level_xp(level):
    return total_level_xp(level + 1) - total_level_xp(level)
 
locale.setlocale(locale.LC_ALL, "")
 
for level in range(1,276):
    next_xp = next_level_xp(level)
    total_xp = total_level_xp(level)
    print "| %d || %s || %s" % (level, locale.format("%.*d", (1, next_xp), True), locale.format("%.*d", (1, total_xp), True))
    print "|-"
</nowiki>
</pre>
 
--[[User:Widgeon|Widgeon]] 22:35, 7 July 2008 (CDT)

Latest revision as of 20:43, 12 February 2013