<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://www.drunkenfell.com/index.php?action=history&amp;feed=atom&amp;title=Talk%3AExperience_Points</id>
	<title>Talk:Experience Points - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://www.drunkenfell.com/index.php?action=history&amp;feed=atom&amp;title=Talk%3AExperience_Points"/>
	<link rel="alternate" type="text/html" href="https://www.drunkenfell.com/index.php?title=Talk:Experience_Points&amp;action=history"/>
	<updated>2026-04-21T05:00:49Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.41.0</generator>
	<entry>
		<id>https://www.drunkenfell.com/index.php?title=Talk:Experience_Points&amp;diff=362812&amp;oldid=prev</id>
		<title>imported&gt;Arkalor: moved Talk:Level Costs to Talk:Experience Points: Sub topic for main Experience Points page.</title>
		<link rel="alternate" type="text/html" href="https://www.drunkenfell.com/index.php?title=Talk:Experience_Points&amp;diff=362812&amp;oldid=prev"/>
		<updated>2013-02-12T20:43:40Z</updated>

		<summary type="html">&lt;p&gt;moved &lt;a href=&quot;https://www.drunkenfell.com/index.php?title=Talk:Level_Costs&quot; class=&quot;mw-redirect&quot; title=&quot;Talk:Level Costs&quot;&gt;Talk:Level Costs&lt;/a&gt; to &lt;a href=&quot;https://www.drunkenfell.com/index.php?title=Talk:Experience_Points&quot; title=&quot;Talk:Experience Points&quot;&gt;Talk:Experience Points&lt;/a&gt;: Sub topic for main Experience Points page.&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 15:43, 12 February 2013&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;en&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>imported&gt;Arkalor</name></author>
	</entry>
	<entry>
		<id>https://www.drunkenfell.com/index.php?title=Talk:Experience_Points&amp;diff=75410&amp;oldid=prev</id>
		<title>imported&gt;Arkalor: moved Talk:Level Costs to Talk:Experience Points: Sub topic for main Experience Points page.</title>
		<link rel="alternate" type="text/html" href="https://www.drunkenfell.com/index.php?title=Talk:Experience_Points&amp;diff=75410&amp;oldid=prev"/>
		<updated>2013-02-12T20:43:40Z</updated>

		<summary type="html">&lt;p&gt;moved &lt;a href=&quot;https://www.drunkenfell.com/index.php?title=Talk:Level_Costs&quot; class=&quot;mw-redirect&quot; title=&quot;Talk:Level Costs&quot;&gt;Talk:Level Costs&lt;/a&gt; to &lt;a href=&quot;https://www.drunkenfell.com/index.php?title=Talk:Experience_Points&quot; title=&quot;Talk:Experience Points&quot;&gt;Talk:Experience Points&lt;/a&gt;: Sub topic for main Experience Points page.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;It looks like the calculation uses round() for levels above 126, ceil() for other levels, and then level 2 should be 1000 xp, not 1004.  I've updated the script below. --[[User:Widgeon|Widgeon]] 00:04, 23 February 2009 (CST)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
For what it's worth, here's the python script I used to generate the table:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;&lt;br /&gt;
#!/usr/bin/python                                                                                                                                               &lt;br /&gt;
&lt;br /&gt;
import math&lt;br /&gt;
import locale&lt;br /&gt;
&lt;br /&gt;
def total_level_xp(level):&lt;br /&gt;
    if (level &amp;lt; 2):&lt;br /&gt;
        return 0;&lt;br /&gt;
&lt;br /&gt;
    if (level == 2):&lt;br /&gt;
        return 1000;&lt;br /&gt;
&lt;br /&gt;
    if (level &amp;lt;= 126):&lt;br /&gt;
        return int(math.ceil( ((level + 5) ** 5 - (6 ** 5)) / 9.))&lt;br /&gt;
&lt;br /&gt;
    return int(round( ((level + 5) ** 5 - (6 ** 5)) / 9.))&lt;br /&gt;
&lt;br /&gt;
def next_level_xp(level):&lt;br /&gt;
    return total_level_xp(level) - total_level_xp(level - 1)&lt;br /&gt;
&lt;br /&gt;
locale.setlocale(locale.LC_ALL, &amp;quot;&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
for level in range(1,276):&lt;br /&gt;
    next_xp = next_level_xp(level)&lt;br /&gt;
    total_xp = total_level_xp(level)&lt;br /&gt;
    print &amp;quot;| %d || %s || %s&amp;quot; % (level, locale.format(&amp;quot;%.*d&amp;quot;, (1, next_xp), True), locale.format(&amp;quot;%.*d&amp;quot;, (1, total_xp), True))&lt;br /&gt;
    print &amp;quot;|-&amp;quot;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
--[[User:Widgeon|Widgeon]] 22:35, 7 July 2008 (CDT)&lt;/div&gt;</summary>
		<author><name>imported&gt;Arkalor</name></author>
	</entry>
</feed>