<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://slot1.images.wikia.nocookie.net/__cb62193/common/skins/common/feed.css?62193"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://tconfig.wikia.com/wiki/Special:RecentChanges?feed=atom</id>
		<title>Surfpup's tConfig Mod Wiki  - Recent changes [en]</title>
		<link rel="self" type="application/atom+xml" href="http://tconfig.wikia.com/wiki/Special:RecentChanges?feed=atom"/>
		<link rel="alternate" type="text/html" href="http://tconfig.wikia.com/wiki/Special:RecentChanges"/>
		<updated>2013-06-19T02:46:28Z</updated>
		<subtitle>Track the most recent changes to the wiki in this feed.</subtitle>
		<generator>MediaWiki 1.19.6</generator>

	<entry>
		<id>http://tconfig.wikia.com/wiki/Talk:Player_Attributes/@comment-76.30.96.146-20130618182745/@comment-76.30.96.146-20130619021448?diff=18184&amp;oldid=0</id>
		<title>Talk:Player Attributes/@comment-76.30.96.146-20130618182745/@comment-76.30.96.146-20130619021448</title>
		<link rel="alternate" type="text/html" href="http://tconfig.wikia.com/wiki/Talk:Player_Attributes/@comment-76.30.96.146-20130618182745/@comment-76.30.96.146-20130619021448?diff=18184&amp;oldid=0"/>
				<updated>2013-06-19T02:14:48Z</updated>
		
		<summary type="html">&lt;p&gt;Created page with &amp;quot;Nvm, got it to work. :)&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Nvm, got it to work. :)&lt;/div&gt;</summary>
		<author><name>76.30.96.146</name></author>	</entry>

	<entry>
		<id>http://tconfig.wikia.com/wiki/Talk:How_to_Create_a_Town_NPC/@comment-173.78.24.72-20130618202504?diff=18182&amp;oldid=0</id>
		<title>Talk:How to Create a Town NPC/@comment-173.78.24.72-20130618202504</title>
		<link rel="alternate" type="text/html" href="http://tconfig.wikia.com/wiki/Talk:How_to_Create_a_Town_NPC/@comment-173.78.24.72-20130618202504?diff=18182&amp;oldid=0"/>
				<updated>2013-06-18T20:25:05Z</updated>
		
		<summary type="html">&lt;p&gt;Created page with &amp;quot;my .cs is not loading the name... the name comes out the alien. what went wrong. here is my .cs.  public static bool TownSpawn() {  if(Main.hardMode)          return true;...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;my .cs is not loading the name... the name comes out the alien. what went wrong. here is my .cs.&lt;br /&gt;
&lt;br /&gt;
public static bool TownSpawn() {&lt;br /&gt;
&lt;br /&gt;
if(Main.hardMode)&lt;br /&gt;
&lt;br /&gt;
        return true;&lt;br /&gt;
&lt;br /&gt;
else &lt;br /&gt;
&lt;br /&gt;
        return false;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
public static string SetName() {&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
int result = Main.rand.Next(4);&lt;br /&gt;
&lt;br /&gt;
string name = &amp;quot;&amp;quot;;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
if (result == 0) &lt;br /&gt;
&lt;br /&gt;
      { &lt;br /&gt;
&lt;br /&gt;
        name = &amp;quot;Grock&amp;quot;; &lt;br /&gt;
&lt;br /&gt;
      }&lt;br /&gt;
&lt;br /&gt;
else if (result == 1) &lt;br /&gt;
&lt;br /&gt;
      { &lt;br /&gt;
&lt;br /&gt;
        name = &amp;quot;Lock&amp;quot;; &lt;br /&gt;
&lt;br /&gt;
      }&lt;br /&gt;
&lt;br /&gt;
else if (result == 2) &lt;br /&gt;
&lt;br /&gt;
      { &lt;br /&gt;
&lt;br /&gt;
        name = &amp;quot;Mock&amp;quot;; &lt;br /&gt;
&lt;br /&gt;
      }&lt;br /&gt;
&lt;br /&gt;
else if (result == 3)&lt;br /&gt;
&lt;br /&gt;
      { &lt;br /&gt;
&lt;br /&gt;
        name = &amp;quot;Tock&amp;quot;; &lt;br /&gt;
&lt;br /&gt;
      }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
return name;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
public static string Chat() {&lt;br /&gt;
&lt;br /&gt;
if(Main.rand.Next(2)==0)&lt;br /&gt;
&lt;br /&gt;
return &amp;quot;What do you mean? Do what hand thing?&amp;quot;;&lt;br /&gt;
&lt;br /&gt;
      else&lt;br /&gt;
&lt;br /&gt;
return &amp;quot;No, I never died of radiation.&amp;quot;;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
public static void SetupShop(Chest chest) {&lt;br /&gt;
&lt;br /&gt;
int index=0;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
chest.item[index].SetDefaults(&amp;quot;Space Gun&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
chest.item[index].value = 100000;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>173.78.24.72</name></author>	</entry>

	<entry>
		<id>http://tconfig.wikia.com/wiki/Talk:Player_Attributes/@comment-76.30.96.146-20130618182745?diff=18180&amp;oldid=0</id>
		<title>Talk:Player Attributes/@comment-76.30.96.146-20130618182745</title>
		<link rel="alternate" type="text/html" href="http://tconfig.wikia.com/wiki/Talk:Player_Attributes/@comment-76.30.96.146-20130618182745?diff=18180&amp;oldid=0"/>
				<updated>2013-06-18T18:27:45Z</updated>
		
		<summary type="html">&lt;p&gt;Created page with &amp;quot;Does anyone know how to increase movement speed? ive tried various methods, but none work&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Does anyone know how to increase movement speed? ive tried various methods, but none work&lt;/div&gt;</summary>
		<author><name>76.30.96.146</name></author>	</entry>

	<entry>
		<id>http://tconfig.wikia.com/wiki/Talk:Enemy_NPC_Tutorial/@comment-24.1.198.31-20130618170115?diff=18178&amp;oldid=0</id>
		<title>Talk:Enemy NPC Tutorial/@comment-24.1.198.31-20130618170115</title>
		<link rel="alternate" type="text/html" href="http://tconfig.wikia.com/wiki/Talk:Enemy_NPC_Tutorial/@comment-24.1.198.31-20130618170115?diff=18178&amp;oldid=0"/>
				<updated>2013-06-18T17:01:15Z</updated>
		
		<summary type="html">&lt;p&gt;Created page with &amp;quot;But now there is a new problem I can&amp;#039;t seem to get my boss spawner to spawn the boss can anyone help?&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;But now there is a new problem I can't seem to get my boss spawner to spawn the boss can anyone help?&lt;/div&gt;</summary>
		<author><name>24.1.198.31</name></author>	</entry>

	<entry>
		<id>http://tconfig.wikia.com/wiki/Talk:Enemy_NPC_Tutorial/@comment-WaterTurtle-20130618154614?diff=18177&amp;oldid=0</id>
		<title>Talk:Enemy NPC Tutorial/@comment-WaterTurtle-20130618154614</title>
		<link rel="alternate" type="text/html" href="http://tconfig.wikia.com/wiki/Talk:Enemy_NPC_Tutorial/@comment-WaterTurtle-20130618154614?diff=18177&amp;oldid=0"/>
				<updated>2013-06-18T15:46:15Z</updated>
		
		<summary type="html">&lt;p&gt;Created page with &amp;quot;Never MInd I fixed it&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Never MInd I fixed it&lt;/div&gt;</summary>
		<author><name>WaterTurtle</name></author>	</entry>

	<entry>
		<id>http://tconfig.wikia.com/wiki/Talk:Enemy_NPC_Tutorial/@comment-WaterTurtle-20130618153925?diff=18174&amp;oldid=0</id>
		<title>Talk:Enemy NPC Tutorial/@comment-WaterTurtle-20130618153925</title>
		<link rel="alternate" type="text/html" href="http://tconfig.wikia.com/wiki/Talk:Enemy_NPC_Tutorial/@comment-WaterTurtle-20130618153925?diff=18174&amp;oldid=0"/>
				<updated>2013-06-18T15:39:25Z</updated>
		
		<summary type="html">&lt;p&gt;Created page with &amp;quot;I&amp;#039;m trying to make a boss but when I load it in the Modpack Builder it fails and says at terraria.ModPackBuilder.HandleErrors&amp;lt;CompilerResults Results, String Source&amp;gt; at Terrar...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;I'm trying to make a boss but when I load it in the Modpack Builder it fails and says at terraria.ModPackBuilder.HandleErrors&amp;lt;CompilerResults Results, String Source&amp;gt; at Terraria.ModpackBuilder.CompilePerm&amp;lt;String ClassName, String SourceFile, String Type, Boolean Save&amp;gt; at Terraria.ModPackBuilder.CompileCSCheck&amp;lt;String className, String CodePath, StringType&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Build Failed&lt;br /&gt;
&lt;br /&gt;
can anyone help me with this?&lt;/div&gt;</summary>
		<author><name>WaterTurtle</name></author>	</entry>

	<entry>
		<id>http://tconfig.wikia.com/wiki/User:WaterTurtle</id>
		<title>User:WaterTurtle</title>
		<link rel="alternate" type="text/html" href="http://tconfig.wikia.com/wiki/User:WaterTurtle"/>
				<updated>2013-06-18T15:15:10Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;a href=&quot;/wiki/User:WaterTurtle&quot; title=&quot;User:WaterTurtle&quot; class=&quot;mw-userlink&quot;&gt;WaterTurtle&lt;/a&gt; created a user account&lt;/p&gt;
</summary>
		<author><name>WaterTurtle</name></author>	</entry>

	<entry>
		<id>http://tconfig.wikia.com/wiki/How_to_Make_a_Custom_Buff?diff=18172&amp;oldid=17241</id>
		<title>How to Make a Custom Buff</title>
		<link rel="alternate" type="text/html" href="http://tconfig.wikia.com/wiki/How_to_Make_a_Custom_Buff?diff=18172&amp;oldid=17241"/>
				<updated>2013-06-18T07:39:23Z</updated>
		
		<summary type="html">&lt;p&gt;‎&lt;span dir=&quot;auto&quot;&gt;&lt;span class=&quot;autocomment&quot;&gt;Setting up a ModPack: &lt;/span&gt; &lt;/span&gt;&lt;/p&gt;
&lt;table class='diff diff-contentalign-left'&gt;
				&lt;col class='diff-marker' /&gt;
				&lt;col class='diff-content' /&gt;
				&lt;col class='diff-marker' /&gt;
				&lt;col class='diff-content' /&gt;
			&lt;tr valign='top'&gt;
			&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;← Older revision&lt;/td&gt;
			&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;Revision as of 07:39, June 18, 2013&lt;/td&gt;
			&lt;/tr&gt;&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 10:&lt;/td&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 10:&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;===Setting up a ModPack===&lt;/div&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;===Setting up a ModPack===&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;−&lt;/td&gt;
  &lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;First, if not done already, create a modpack folder in your terraria folder. (C:\Users\You\Documents\My Games\Terraria\&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;Create it here&lt;/span&gt;)&lt;/div&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;First, if not done already, create a modpack folder in your terraria folder. (C:\Users\You\Documents\My Games\Terraria\&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;ModPacks&lt;/span&gt;)&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;Create a folder called &quot;Buff&quot; inside your ModPack folder.&lt;/div&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;Create a folder called &quot;Buff&quot; inside your ModPack folder.&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;!-- diff cache key tconfig:diff:version:1.11a:oldid:17241:newid:18172 --&gt;
&lt;/table&gt;</summary>
		<author><name>67.162.212.220</name></author>	</entry>

	<entry>
		<id>http://tconfig.wikia.com/wiki/Talk:How_to_Create_a_Town_NPC/@comment-200.75.116.151-20130617192420?diff=18170&amp;oldid=0</id>
		<title>Talk:How to Create a Town NPC/@comment-200.75.116.151-20130617192420</title>
		<link rel="alternate" type="text/html" href="http://tconfig.wikia.com/wiki/Talk:How_to_Create_a_Town_NPC/@comment-200.75.116.151-20130617192420?diff=18170&amp;oldid=0"/>
				<updated>2013-06-17T19:24:20Z</updated>
		
		<summary type="html">&lt;p&gt;Created page with &amp;quot;I can spend their cs to see how it is.     their cs is the only vendor that makes no action.&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;I can spend their cs to see how it is.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
their cs is the only vendor that makes no action.&lt;/div&gt;</summary>
		<author><name>200.75.116.151</name></author>	</entry>

	<entry>
		<id>http://tconfig.wikia.com/wiki/Talk:Player_Class/@comment-CameraFan-20130617054828?diff=18169&amp;oldid=0</id>
		<title>Talk:Player Class/@comment-CameraFan-20130617054828</title>
		<link rel="alternate" type="text/html" href="http://tconfig.wikia.com/wiki/Talk:Player_Class/@comment-CameraFan-20130617054828?diff=18169&amp;oldid=0"/>
				<updated>2013-06-17T05:48:28Z</updated>
		
		<summary type="html">&lt;p&gt;Created page with &amp;quot;How does the Color variable work?&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;How does the Color variable work?&lt;/div&gt;</summary>
		<author><name>CameraFan</name></author>	</entry>

	<entry>
		<id>http://tconfig.wikia.com/wiki/Changelog?diff=18168&amp;oldid=18126</id>
		<title>Changelog</title>
		<link rel="alternate" type="text/html" href="http://tconfig.wikia.com/wiki/Changelog?diff=18168&amp;oldid=18126"/>
				<updated>2013-06-16T21:03:13Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;table class='diff diff-contentalign-left'&gt;
				&lt;col class='diff-marker' /&gt;
				&lt;col class='diff-content' /&gt;
				&lt;col class='diff-marker' /&gt;
				&lt;col class='diff-content' /&gt;
			&lt;tr valign='top'&gt;
			&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;← Older revision&lt;/td&gt;
			&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;Revision as of 21:03, June 16, 2013&lt;/td&gt;
			&lt;/tr&gt;&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 4:&lt;/td&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 4:&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;__TOC__&lt;/div&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;__TOC__&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;=Release 16 (v0.28)=&lt;/div&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;=Release 16 (v0.28)=&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;==v0.34.0==&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;*Changed Player PreDraw hook , it is now public void PreDraw(Player P,SpriteBatch SP,ref bool LetDraw) &lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;**Setting LetDraw to false would be the equivalent of returning false in the old way.&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;*Removed Player RocketHandle hook&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;*Added Player hooks&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;**public void RocketFrame(Player P,ref bool LetRocket,ref bool EmitDust)&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;***LetRocket (default true) can be set to false to remove all the handling of rocket boots velocity changes and dust stuff&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;***EmitDust (default true) can be set to false to make the player not emit dust when using rocket boots of any kind&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;**public void DirectionalMovement(Player P,ref bool LetRun,ref bool EmitDust,ref bool PlaySound)&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;***LetRun (default true) can be set to false to remove all the handling of horizontal movement&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;***EmitDust (default true) can be set to false to remove any dust emitted by things such as hermes boots when moving fast&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;***PlaySound (default true) can be set to false to remove any stepping sound when running fast&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;**public void CheckJump(Player P,ref bool LetJump,ref bool EmitDust,ref bool PlaySound)&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;***LetJump (default true) can be set to false to remove all the handling of the jump key control&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;***EmitDust (default true) can be set to false to remove any dust emitted by cloud in a bottle like effects&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;***PlaySound (default true) can be set to false to remove any jump related sound&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;*Added Player methods&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;**public bool HasItem(int netID,int stack =-1) , returns true if the player has the item , if stack is not -1 it will check if the player has at least the stack amount specified of the item&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;***For example somePlayer.HasItem(8,3) would return true if the player has at least 3 torches&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;**public bool HasItem(string name,int stack =-1) , like the netID version but takes a name instead&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;***For example somePlayer.HasItem(&quot;Gold Ore&quot;,25) would return true if the player has at least 25 gold ores in the inventory&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;*Moved player head rotation code when in merman form to Player.PlayerFrame (before the FrameEffect hook)&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;*Added displayName for items&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;**item.displayName (default &quot;&quot;) can be set to make the item have the name stated in display name, note that any code referencing the item would still use the given ini file name of the item&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;***For example you can have an item called SuperPowerFullOre.ini and it can have a displayName=&quot;Useless Ore&quot; , the item would appear as &quot;Useless Ore&quot; in game but any code refering the item such as spawning still needs to use SuperPowerFullOre as the name.&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;**added new optional INI Attribute 'displayName=' for items , works exactly like the code variant.&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;*Changed AffixName hook for items , it is now public void AffixName(ref string itemname,bool AfterPrefixing)&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;**The hook is now called twice per name getting , once before prefixing of the item and once after the prefixing of the item&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;**Prefixes using the hook also need to be adjusted to fit this hook change&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;*Added support for custom item slot displays&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;**Added new ModWorld hook public void OnSetup() , called right before the RegisterOnScreenInterfaces hook , used for adding listeners for a portion of tConfig's hooks&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;**This feature is only for advanced coders , it is recommended that you decompile the latest tConfig to find out all of its functionality.&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;**Added IItemSlotRender layer interface , consisting of the following mandatory hooks&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;***public void PreDrawItemInSlot(SpriteBatch SP,Color SlotColor,Item I,Vector2 Pos,float ItemScale, ref bool LetDraw)&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;***public void PostDrawItemInSlot(SpriteBatch SP,Color SlotColor,Item I,Vector2 Pos,float ItemScale,bool DidDraw)&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;***This hook is used to register ItemSlotRender layers&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;**Example created by shockah is available&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;***Example mod link https://dl.dropboxusercontent.com/u/17654038/Shop%20Info%20Installer.exe&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;***Example mod code http://paste.kde.org/775616/13714143/ , http://paste.kde.org/775622/14143341/&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;*Fixed a small bug where tConfig would crash when trying to load a player if the last mod loaded was outdated / lacked a required dependency mod&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;==v0.33.0==&lt;/div&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;==v0.33.0==&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;*Improved a very small and ignorable memory leak regarding custom music&lt;/div&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;*Improved a very small and ignorable memory leak regarding custom music&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;!-- diff cache key tconfig:diff:version:1.11a:oldid:18126:newid:18168 --&gt;
&lt;/table&gt;</summary>
		<author><name>Yoraiz0r</name></author>	</entry>

	<entry>
		<id>http://tconfig.wikia.com/wiki/Template:Download?diff=18167&amp;oldid=18127</id>
		<title>Template:Download</title>
		<link rel="alternate" type="text/html" href="http://tconfig.wikia.com/wiki/Template:Download?diff=18167&amp;oldid=18127"/>
				<updated>2013-06-16T21:01:59Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;table class='diff diff-contentalign-left'&gt;
				&lt;col class='diff-marker' /&gt;
				&lt;col class='diff-content' /&gt;
				&lt;col class='diff-marker' /&gt;
				&lt;col class='diff-content' /&gt;
			&lt;tr valign='top'&gt;
			&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;← Older revision&lt;/td&gt;
			&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;Revision as of 21:01, June 16, 2013&lt;/td&gt;
			&lt;/tr&gt;&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;−&lt;/td&gt;
  &lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;[http://adf.ly/49pJj v0.&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;33&lt;/span&gt;.0]&lt;/div&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;[http://adf.ly/49pJj v0.&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;34&lt;/span&gt;.0]&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;!-- diff cache key tconfig:diff:version:1.11a:oldid:18127:newid:18167 --&gt;
&lt;/table&gt;</summary>
		<author><name>Yoraiz0r</name></author>	</entry>

	<entry>
		<id>http://tconfig.wikia.com/wiki/ModPacks?diff=18165&amp;oldid=18164</id>
		<title>ModPacks</title>
		<link rel="alternate" type="text/html" href="http://tconfig.wikia.com/wiki/ModPacks?diff=18165&amp;oldid=18164"/>
				<updated>2013-06-16T19:07:03Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;table class='diff diff-contentalign-left'&gt;
				&lt;col class='diff-marker' /&gt;
				&lt;col class='diff-content' /&gt;
				&lt;col class='diff-marker' /&gt;
				&lt;col class='diff-content' /&gt;
			&lt;tr valign='top'&gt;
			&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;← Older revision&lt;/td&gt;
			&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;Revision as of 19:07, June 16, 2013&lt;/td&gt;
			&lt;/tr&gt;&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 225:&lt;/td&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 225:&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|0.27.2&lt;/div&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|0.27.2&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|Adds '''metroid''' related content to the game.&lt;/div&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|Adds '''metroid''' related content to the game.&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|-&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|[http://www.terrariaonline.com/members/shadow123.101621/ Shadow123]&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|[http://www.terrariaonline.com/threads/ww2-pack-tconfig-work-in-progress.90076/#post-2118902 WW2 Weapons Pack]&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|0.27.2&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|A mod that includes weapons from World War II directly to terraria. It's on a very early development stage actually.&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|-&lt;/div&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|-&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|[http://www.terrariaonline.com/members/emcitement.87144/ Emcitement]&lt;/div&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|[http://www.terrariaonline.com/members/emcitement.87144/ Emcitement]&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;!-- diff cache key tconfig:diff:version:1.11a:oldid:18164:newid:18165 --&gt;
&lt;/table&gt;</summary>
		<author><name>82.45.195.190</name></author>	</entry>

	<entry>
		<id>http://tconfig.wikia.com/wiki/ModPacks?diff=18164&amp;oldid=18142</id>
		<title>ModPacks</title>
		<link rel="alternate" type="text/html" href="http://tconfig.wikia.com/wiki/ModPacks?diff=18164&amp;oldid=18142"/>
				<updated>2013-06-16T12:05:32Z</updated>
		
		<summary type="html">&lt;p&gt;‎&lt;span dir=&quot;auto&quot;&gt;&lt;span class=&quot;autocomment&quot;&gt;1.1+ Compatible Mods: &lt;/span&gt; &lt;/span&gt;&lt;/p&gt;
&lt;table class='diff diff-contentalign-left'&gt;
				&lt;col class='diff-marker' /&gt;
				&lt;col class='diff-content' /&gt;
				&lt;col class='diff-marker' /&gt;
				&lt;col class='diff-content' /&gt;
			&lt;tr valign='top'&gt;
			&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;← Older revision&lt;/td&gt;
			&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;Revision as of 12:05, June 16, 2013&lt;/td&gt;
			&lt;/tr&gt;&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 369:&lt;/td&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 369:&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|[http://www.terrariaonline.com/members/zoodletec.80324/ Zoodletec]&lt;/div&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|[http://www.terrariaonline.com/members/zoodletec.80324/ Zoodletec]&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|[http://www.terrariaonline.com/threads/multi-release-wip-zoodles-content-packs.85440/ Zoodle's Content Packs]&lt;/div&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|[http://www.terrariaonline.com/threads/multi-release-wip-zoodles-content-packs.85440/ Zoodle's Content Packs]&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;−&lt;/td&gt;
  &lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|0.&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;23&lt;/span&gt;.&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;3&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|0.&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;33&lt;/span&gt;.&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;0&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|Content packs that add all kinds of '''items''', '''tiles''', '''NPCs''', '''armor''', '''bosses''', and lots of '''weapons'''. All packs are frequently updated.&lt;/div&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|Content packs that add all kinds of '''items''', '''tiles''', '''NPCs''', '''armor''', '''bosses''', and lots of '''weapons'''. All packs are frequently updated.&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|-&lt;/div&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|-&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;!-- diff cache key tconfig:diff:version:1.11a:oldid:18142:newid:18164 --&gt;
&lt;/table&gt;</summary>
		<author><name>Zoodletec</name></author>	</entry>

	<entry>
		<id>http://tconfig.wikia.com/wiki/Talk:Downloads/@comment-SASdave13-20130616005926?diff=18163&amp;oldid=0</id>
		<title>Talk:Downloads/@comment-SASdave13-20130616005926</title>
		<link rel="alternate" type="text/html" href="http://tconfig.wikia.com/wiki/Talk:Downloads/@comment-SASdave13-20130616005926?diff=18163&amp;oldid=0"/>
				<updated>2013-06-16T00:59:27Z</updated>
		
		<summary type="html">&lt;p&gt;Created page with &amp;quot;Once I get this mod done I&amp;#039;ll send you a copy of it and maybe open it to the internet&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Once I get this mod done I'll send you a copy of it and maybe open it to the internet&lt;/div&gt;</summary>
		<author><name>SASdave13</name></author>	</entry>

	<entry>
		<id>http://tconfig.wikia.com/wiki/Talk:Downloads/@comment-SASdave13-20130616005316?diff=18162&amp;oldid=18159</id>
		<title>Talk:Downloads/@comment-SASdave13-20130616005316</title>
		<link rel="alternate" type="text/html" href="http://tconfig.wikia.com/wiki/Talk:Downloads/@comment-SASdave13-20130616005316?diff=18162&amp;oldid=18159"/>
				<updated>2013-06-16T00:57:29Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;table class='diff diff-contentalign-left'&gt;
				&lt;col class='diff-marker' /&gt;
				&lt;col class='diff-content' /&gt;
				&lt;col class='diff-marker' /&gt;
				&lt;col class='diff-content' /&gt;
			&lt;tr valign='top'&gt;
			&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;← Older revision&lt;/td&gt;
			&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;Revision as of 00:57, June 16, 2013&lt;/td&gt;
			&lt;/tr&gt;&lt;tr&gt;&lt;td colspan='4' align='center' class='diff-multi'&gt;(2 intermediate revisions by one user not shown)&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 3:&lt;/td&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 3:&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;Here's the C# Script:&lt;/div&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;Here's the C# Script:&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;−&lt;/td&gt;
  &lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;[Stats]&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;−&lt;/td&gt;
  &lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;width=&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;400height&lt;/span&gt;=&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;18type&lt;/span&gt;=&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;603useStyle&lt;/span&gt;=&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;5useAnimation&lt;/span&gt;=&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;7useTime&lt;/span&gt;=&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;7maxStack&lt;/span&gt;=&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;1damage&lt;/span&gt;=&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;120knockBack&lt;/span&gt;=&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;8autoReuse&lt;/span&gt;=&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;Truescale&lt;/span&gt;=&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;1useSound&lt;/span&gt;=&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;11toolTip&lt;/span&gt;=SASdaves13' Custom-Made Pwnage &lt;span class=&quot;diffchange diffchange-inline&quot;&gt;Machinerare&lt;/span&gt;=&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;5shoot&lt;/span&gt;=&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;14shootSpeed&lt;/span&gt;=&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;10useAmmo&lt;/span&gt;=&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;14noMelee&lt;/span&gt;=&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;Truevalue&lt;/span&gt;=&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;9500000ranged&lt;/span&gt;=True[Recipe]Amount=&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;1needWater&lt;/span&gt;=&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;FalseItems&lt;/span&gt;=1 Shotgun, 1 Megashark, 3 Glass, 1 Soul of Light, 6 Cursed Flame, 45 Adamantite Ingots, 2 Gold Ingot, 40 Souls of Might, 3 Gel, 5 Ruby Tiles=Tinkerer's &lt;span class=&quot;diffchange diffchange-inline&quot;&gt;WorkshopAnd the sprite I wish to use: [[File:Item_603.png|thumb|left|398px]] I'm kinda new to modding Terraria since I started 2 weeks ago and I want to know how to resolve the issues in the making of this mod.Thanks&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;[Stats]&lt;/span&gt;width=&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;400 height&lt;/span&gt;=&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;18 type&lt;/span&gt;=&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;603 useStyle&lt;/span&gt;=&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;5 useAnimation&lt;/span&gt;=&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;7 useTime&lt;/span&gt;=&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;7 maxStack&lt;/span&gt;=&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;1 damage&lt;/span&gt;=&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;120 knockBack&lt;/span&gt;=&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;8 autoReuse&lt;/span&gt;=&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;True scale&lt;/span&gt;=&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;1 useSound&lt;/span&gt;=&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;11 toolTip&lt;/span&gt;=SASdaves13' Custom-Made Pwnage &lt;span class=&quot;diffchange diffchange-inline&quot;&gt;Machine rare&lt;/span&gt;=&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;5 shoot&lt;/span&gt;=&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;14 shootSpeed&lt;/span&gt;=&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;10 useAmmo&lt;/span&gt;=&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;14 noMelee&lt;/span&gt;=&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;True value&lt;/span&gt;=&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;9500000 ranged&lt;/span&gt;=True&lt;span class=&quot;diffchange diffchange-inline&quot;&gt; &lt;/span&gt;[Recipe]Amount=&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;1 needWater&lt;/span&gt;=&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;False Items&lt;/span&gt;=1 Shotgun, 1 Megashark, 3 Glass, 1 Soul of Light, 6 Cursed Flame, 45 Adamantite Ingots, 2 Gold Ingot, 40 Souls of Might, 3 Gel, 5 Ruby Tiles=Tinkerer's &lt;span class=&quot;diffchange diffchange-inline&quot;&gt;Workshop&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;And the sprite I wish to use: &lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;[[File:Item_603.png|thumb|left|398px]]&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;I'm kinda new to modding Terraria since I started 2 weeks ago and I want to know how to resolve the issues in the making of this mod.&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;Thanks&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;!-- diff cache key tconfig:diff:version:1.11a:oldid:18159:newid:18162 --&gt;
&lt;/table&gt;</summary>
		<author><name>SASdave13</name></author>	</entry>

	<entry>
		<id>http://tconfig.wikia.com/wiki/Talk:Downloads/@comment-SASdave13-20130616005316?diff=18159&amp;oldid=0</id>
		<title>Talk:Downloads/@comment-SASdave13-20130616005316</title>
		<link rel="alternate" type="text/html" href="http://tconfig.wikia.com/wiki/Talk:Downloads/@comment-SASdave13-20130616005316?diff=18159&amp;oldid=0"/>
				<updated>2013-06-16T00:53:16Z</updated>
		
		<summary type="html">&lt;p&gt;Created page with &amp;quot;Hi, my name&amp;#039;s David and I really need some help with a mod I&amp;#039;m creating. The mod I&amp;#039;m creating is called &amp;quot;SASdaves&amp;#039; SASmods&amp;quot; and the gun I&amp;#039;ve made, (D14 Assault Rifle SAScustom...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Hi, my name's David and I really need some help with a mod I'm creating. The mod I'm creating is called &amp;quot;SASdaves' SASmods&amp;quot; and the gun I've made, (D14 Assault Rifle SAScustom) doesn't turn up in-game. D:&lt;br /&gt;
&lt;br /&gt;
Here's the C# Script:&lt;br /&gt;
&lt;br /&gt;
[Stats]&lt;br /&gt;
width=400height=18type=603useStyle=5useAnimation=7useTime=7maxStack=1damage=120knockBack=8autoReuse=Truescale=1useSound=11toolTip=SASdaves13' Custom-Made Pwnage Machinerare=5shoot=14shootSpeed=10useAmmo=14noMelee=Truevalue=9500000ranged=True[Recipe]Amount=1needWater=FalseItems=1 Shotgun, 1 Megashark, 3 Glass, 1 Soul of Light, 6 Cursed Flame, 45 Adamantite Ingots, 2 Gold Ingot, 40 Souls of Might, 3 Gel, 5 Ruby Tiles=Tinkerer's WorkshopAnd the sprite I wish to use: [[File:Item_603.png|thumb|left|398px]] I'm kinda new to modding Terraria since I started 2 weeks ago and I want to know how to resolve the issues in the making of this mod.Thanks&lt;/div&gt;</summary>
		<author><name>SASdave13</name></author>	</entry>

	<entry>
		<id>http://tconfig.wikia.com/wiki/File:Item_603.png</id>
		<title>File:Item 603.png</title>
		<link rel="alternate" type="text/html" href="http://tconfig.wikia.com/wiki/File:Item_603.png"/>
				<updated>2013-06-16T00:50:23Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;a href=&quot;/wiki/User:SASdave13&quot; title=&quot;User:SASdave13&quot; class=&quot;mw-userlink&quot;&gt;SASdave13&lt;/a&gt; uploaded a new version of &amp;quot;&lt;a href=&quot;/wiki/File:Item_603.png&quot; title=&quot;File:Item 603.png&quot;&gt;File:Item 603.png&lt;/a&gt;&amp;quot;&lt;/p&gt;
</summary>
		<author><name>SASdave13</name></author>	</entry>

	<entry>
		<id>http://tconfig.wikia.com/wiki/File:Item_603.png</id>
		<title>File:Item 603.png</title>
		<link rel="alternate" type="text/html" href="http://tconfig.wikia.com/wiki/File:Item_603.png"/>
				<updated>2013-06-16T00:48:31Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;a href=&quot;/wiki/User:SASdave13&quot; title=&quot;User:SASdave13&quot; class=&quot;mw-userlink&quot;&gt;SASdave13&lt;/a&gt; uploaded &amp;quot;&lt;a href=&quot;/wiki/File:Item_603.png&quot; title=&quot;File:Item 603.png&quot;&gt;File:Item 603.png&lt;/a&gt;&amp;quot;&lt;/p&gt;
</summary>
		<author><name>SASdave13</name></author>	</entry>

	<entry>
		<id>http://tconfig.wikia.com/wiki/User:SASdave13</id>
		<title>User:SASdave13</title>
		<link rel="alternate" type="text/html" href="http://tconfig.wikia.com/wiki/User:SASdave13"/>
				<updated>2013-06-16T00:38:03Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;a href=&quot;/wiki/User:SASdave13&quot; title=&quot;User:SASdave13&quot; class=&quot;mw-userlink&quot;&gt;SASdave13&lt;/a&gt; User avatar added or updated&lt;/p&gt;
</summary>
		<author><name>SASdave13</name></author>	</entry>

	<entry>
		<id>http://tconfig.wikia.com/wiki/User:SASdave13</id>
		<title>User:SASdave13</title>
		<link rel="alternate" type="text/html" href="http://tconfig.wikia.com/wiki/User:SASdave13"/>
				<updated>2013-06-16T00:36:07Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;a href=&quot;/wiki/User:SASdave13&quot; title=&quot;User:SASdave13&quot; class=&quot;mw-userlink&quot;&gt;SASdave13&lt;/a&gt; User avatar added or updated&lt;/p&gt;
</summary>
		<author><name>SASdave13</name></author>	</entry>

	<entry>
		<id>http://tconfig.wikia.com/wiki/User:SASdave13</id>
		<title>User:SASdave13</title>
		<link rel="alternate" type="text/html" href="http://tconfig.wikia.com/wiki/User:SASdave13"/>
				<updated>2013-06-16T00:26:10Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;a href=&quot;/wiki/User:SASdave13&quot; title=&quot;User:SASdave13&quot; class=&quot;mw-userlink&quot;&gt;SASdave13&lt;/a&gt; created a user account&lt;/p&gt;
</summary>
		<author><name>SASdave13</name></author>	</entry>

	<entry>
		<id>http://tconfig.wikia.com/wiki/Wall_Tutorial?diff=18153&amp;oldid=16727</id>
		<title>Wall Tutorial</title>
		<link rel="alternate" type="text/html" href="http://tconfig.wikia.com/wiki/Wall_Tutorial?diff=18153&amp;oldid=16727"/>
				<updated>2013-06-15T12:18:48Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;table class='diff diff-contentalign-left'&gt;
				&lt;col class='diff-marker' /&gt;
				&lt;col class='diff-content' /&gt;
				&lt;col class='diff-marker' /&gt;
				&lt;col class='diff-content' /&gt;
			&lt;tr valign='top'&gt;
			&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;← Older revision&lt;/td&gt;
			&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;Revision as of 12:18, June 15, 2013&lt;/td&gt;
			&lt;/tr&gt;&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 4:&lt;/td&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 4:&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;Making a wall is not much different from making a tile.&lt;/div&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;Making a wall is not much different from making a tile.&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;−&lt;/td&gt;
  &lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;This tutorial is based of Obsidian54's Ice Wall.&lt;/div&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;This tutorial is based&lt;span class=&quot;diffchange diffchange-inline&quot;&gt; off&lt;/span&gt; of Obsidian54's Ice Wall.&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;−&lt;/td&gt;
  &lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;To start: You will need a wall .ini&lt;span class=&quot;diffchange diffchange-inline&quot;&gt; and&lt;/span&gt; a sprite,&lt;span class=&quot;diffchange diffchange-inline&quot;&gt; and&lt;/span&gt; a item .ini and a sprite of the wall. In this tutorial, the wall is called &quot;&amp;lt;u&amp;gt;'''Demonite Wall'''&amp;lt;/u&amp;gt;&quot;.&lt;/div&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;To start: You will need a wall .ini&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;,&lt;/span&gt; a sprite, a item .ini and a sprite of the wall. In this tutorial, the wall is called &quot;&amp;lt;u&amp;gt;'''Demonite Wall'''&amp;lt;/u&amp;gt;&quot;.&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;==Making the Wall's .ini==&lt;/div&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;==Making the Wall's .ini==&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;!-- diff cache key tconfig:diff:version:1.11a:oldid:16727:newid:18153 --&gt;
&lt;/table&gt;</summary>
		<author><name>88.108.252.184</name></author>	</entry>

	<entry>
		<id>http://tconfig.wikia.com/wiki/Talk:Install_Guide/@comment-31.209.157.168-20130614210315?diff=18151&amp;oldid=0</id>
		<title>Talk:Install Guide/@comment-31.209.157.168-20130614210315</title>
		<link rel="alternate" type="text/html" href="http://tconfig.wikia.com/wiki/Talk:Install_Guide/@comment-31.209.157.168-20130614210315?diff=18151&amp;oldid=0"/>
				<updated>2013-06-14T21:03:16Z</updated>
		
		<summary type="html">&lt;p&gt;Created page with &amp;quot;How to i install Cracked version?&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;How to i install Cracked version?&lt;/div&gt;</summary>
		<author><name>31.209.157.168</name></author>	</entry>

	<entry>
		<id>http://tconfig.wikia.com/wiki/Star_Class?diff=18150&amp;oldid=6615</id>
		<title>Star Class</title>
		<link rel="alternate" type="text/html" href="http://tconfig.wikia.com/wiki/Star_Class?diff=18150&amp;oldid=6615"/>
				<updated>2013-06-14T15:53:45Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;table class='diff diff-contentalign-left'&gt;
			&lt;tr valign='top'&gt;
			&lt;td colspan='1' style=&quot;background-color: white; color:black;&quot;&gt;← Older revision&lt;/td&gt;
			&lt;td colspan='1' style=&quot;background-color: white; color:black;&quot;&gt;Revision as of 15:53, June 14, 2013&lt;/td&gt;
			&lt;/tr&gt;&lt;tr&gt;&lt;td colspan='2' align='center' class='diff-multi'&gt;(One intermediate revision by one user not shown)&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>76.235.202.117</name></author>	</entry>

	<entry>
		<id>http://tconfig.wikia.com/wiki/Talk:NPC_Class/@comment-95.155.213.147-20130614143628?diff=18146&amp;oldid=0</id>
		<title>Talk:NPC Class/@comment-95.155.213.147-20130614143628</title>
		<link rel="alternate" type="text/html" href="http://tconfig.wikia.com/wiki/Talk:NPC_Class/@comment-95.155.213.147-20130614143628?diff=18146&amp;oldid=0"/>
				<updated>2013-06-14T14:36:28Z</updated>
		
		<summary type="html">&lt;p&gt;Created page with &amp;quot;How do i make a mob dont spawn only with an item?&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;How do i make a mob dont spawn only with an item?&lt;/div&gt;</summary>
		<author><name>95.155.213.147</name></author>	</entry>

	<entry>
		<id>http://tconfig.wikia.com/wiki/User:DIMmIn32TsI?diff=18145&amp;oldid=18128</id>
		<title>User:DIMmIn32TsI</title>
		<link rel="alternate" type="text/html" href="http://tconfig.wikia.com/wiki/User:DIMmIn32TsI?diff=18145&amp;oldid=18128"/>
				<updated>2013-06-13T17:46:04Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;table class='diff diff-contentalign-left'&gt;
				&lt;col class='diff-marker' /&gt;
				&lt;col class='diff-content' /&gt;
				&lt;col class='diff-marker' /&gt;
				&lt;col class='diff-content' /&gt;
			&lt;tr valign='top'&gt;
			&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;← Older revision&lt;/td&gt;
			&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;Revision as of 17:46, June 13, 2013&lt;/td&gt;
			&lt;/tr&gt;&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 12:&lt;/td&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 12:&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;*Gender: ????&lt;/div&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;*Gender: ????&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;*Language: English, Danish&lt;/div&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;*Language: English, Danish&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;−&lt;/td&gt;
  &lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 25:&lt;/td&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 24:&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;*How did you find http://tconfig.wikia.com/wiki/TConfig_Wiki: I searched for some mods to Terraria.&lt;/div&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;*How did you find http://tconfig.wikia.com/wiki/TConfig_Wiki: I searched for some mods to Terraria.&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;−&lt;/td&gt;
  &lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 39:&lt;/td&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 37:&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;*Terraria player name: Nemesis&lt;/div&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;*Terraria player name: Nemesis&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;*Like: I like to make weapons and armors for my player.&lt;/div&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;*Like: I like to make weapons and armors for my player.&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;−&lt;/td&gt;
  &lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;!-- diff cache key tconfig:diff:version:1.11a:oldid:18128:newid:18145 --&gt;
&lt;/table&gt;</summary>
		<author><name>DIMmIn32TsI</name></author>	</entry>

	<entry>
		<id>http://tconfig.wikia.com/wiki/Talk:Downloads/@comment-24.48.172.141-20130613010757?diff=18143&amp;oldid=0</id>
		<title>Talk:Downloads/@comment-24.48.172.141-20130613010757</title>
		<link rel="alternate" type="text/html" href="http://tconfig.wikia.com/wiki/Talk:Downloads/@comment-24.48.172.141-20130613010757?diff=18143&amp;oldid=0"/>
				<updated>2013-06-13T01:07:57Z</updated>
		
		<summary type="html">&lt;p&gt;Created page with &amp;quot;Where can I find version 0.30.4?&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Where can I find version 0.30.4?&lt;/div&gt;</summary>
		<author><name>24.48.172.141</name></author>	</entry>

	<entry>
		<id>http://tconfig.wikia.com/wiki/ModPacks?diff=18142&amp;oldid=18138</id>
		<title>ModPacks</title>
		<link rel="alternate" type="text/html" href="http://tconfig.wikia.com/wiki/ModPacks?diff=18142&amp;oldid=18138"/>
				<updated>2013-06-12T19:25:26Z</updated>
		
		<summary type="html">&lt;p&gt;+version for one&lt;/p&gt;
&lt;table class='diff diff-contentalign-left'&gt;
				&lt;col class='diff-marker' /&gt;
				&lt;col class='diff-content' /&gt;
				&lt;col class='diff-marker' /&gt;
				&lt;col class='diff-content' /&gt;
			&lt;tr valign='top'&gt;
			&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;← Older revision&lt;/td&gt;
			&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;Revision as of 19:25, June 12, 2013&lt;/td&gt;
			&lt;/tr&gt;&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 48:&lt;/td&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 48:&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|0.31.1b&lt;/div&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|0.31.1b&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|Adds 140+ Items and 50+ NPC's (5 New Bosses!) And much more, these based mostly on Final Fantasy VIII and Final Fantasy XII.&lt;/div&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|Adds 140+ Items and 50+ NPC's (5 New Bosses!) And much more, these based mostly on Final Fantasy VIII and Final Fantasy XII.&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|-&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|[http://vk.com/rcreator Anton_ROTD]&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|[http://www.terraria-rotd.l6.org/ Retribution of the Darkness]&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|0.31.1b&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|31 mods and more, Russian setup/documentation only&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|-&lt;/div&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|-&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|[http://www.terrariaonline.com/members/freymodder.110640/ FreyModder]&lt;/div&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|[http://www.terrariaonline.com/members/freymodder.110640/ FreyModder]&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 74:&lt;/td&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 79:&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|0.29.6&lt;/div&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|0.29.6&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|Adds a wide variety of items that for the most part have nothing to do with each other.&lt;/div&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|Adds a wide variety of items that for the most part have nothing to do with each other.&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;−&lt;/td&gt;
  &lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|-&lt;/div&gt;&lt;/td&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;−&lt;/td&gt;
  &lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|[http://vk.com/rcreator Anton_ROTD]&lt;/div&gt;&lt;/td&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;−&lt;/td&gt;
  &lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|[http://www.terraria-rotd.l6.org/ Retribution of the Darkness]&lt;/div&gt;&lt;/td&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;−&lt;/td&gt;
  &lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|&amp;lt;small&amp;gt;''(not specified)''&amp;lt;/small&amp;gt;&lt;/div&gt;&lt;/td&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;−&lt;/td&gt;
  &lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|31 mods and more, Russian setup/documentation only&lt;/div&gt;&lt;/td&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|-&lt;/div&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|-&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|[http://www.terrariaonline.com/members/xargon.56826/ Xargon]&lt;/div&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|[http://www.terrariaonline.com/members/xargon.56826/ Xargon]&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;!-- diff cache key tconfig:diff:version:1.11a:oldid:18138:newid:18142 --&gt;
&lt;/table&gt;</summary>
		<author><name>Equazcion</name></author>	</entry>

	<entry>
		<id>http://tconfig.wikia.com/wiki/Talk:ModPacks/@comment-174.95.198.16-20130413175716/@comment-Chadwick9000-20130612171130?diff=18140&amp;oldid=0</id>
		<title>Talk:ModPacks/@comment-174.95.198.16-20130413175716/@comment-Chadwick9000-20130612171130</title>
		<link rel="alternate" type="text/html" href="http://tconfig.wikia.com/wiki/Talk:ModPacks/@comment-174.95.198.16-20130413175716/@comment-Chadwick9000-20130612171130?diff=18140&amp;oldid=0"/>
				<updated>2013-06-12T17:11:31Z</updated>
		
		<summary type="html">&lt;p&gt;Created page with &amp;quot;... There is, its just (appearently) not on the list...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;... There is, its just (appearently) not on the list...&lt;/div&gt;</summary>
		<author><name>Chadwick9000</name></author>	</entry>

	<entry>
		<id>http://tconfig.wikia.com/wiki/ModPacks?diff=18138&amp;oldid=18137</id>
		<title>ModPacks</title>
		<link rel="alternate" type="text/html" href="http://tconfig.wikia.com/wiki/ModPacks?diff=18138&amp;oldid=18137"/>
				<updated>2013-06-12T15:45:03Z</updated>
		
		<summary type="html">&lt;p&gt;fix&lt;/p&gt;
&lt;table class='diff diff-contentalign-left'&gt;
				&lt;col class='diff-marker' /&gt;
				&lt;col class='diff-content' /&gt;
				&lt;col class='diff-marker' /&gt;
				&lt;col class='diff-content' /&gt;
			&lt;tr valign='top'&gt;
			&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;← Older revision&lt;/td&gt;
			&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;Revision as of 15:45, June 12, 2013&lt;/td&gt;
			&lt;/tr&gt;&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 27:&lt;/td&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 27:&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;* Make sure all files are separated properly. Example: &quot;&amp;lt;code&amp;gt;gold.ini&amp;lt;/code&amp;gt;&quot;, &quot;&amp;lt;code&amp;gt;gold.png&amp;lt;/code&amp;gt;&quot;, and &quot;&amp;lt;code&amp;gt;gold.cs&amp;lt;/code&amp;gt;&quot; should all be in the &quot;&amp;lt;code&amp;gt;item&amp;lt;/code&amp;gt;&quot; folder.&lt;/div&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;* Make sure all files are separated properly. Example: &quot;&amp;lt;code&amp;gt;gold.ini&amp;lt;/code&amp;gt;&quot;, &quot;&amp;lt;code&amp;gt;gold.png&amp;lt;/code&amp;gt;&quot;, and &quot;&amp;lt;code&amp;gt;gold.cs&amp;lt;/code&amp;gt;&quot; should all be in the &quot;&amp;lt;code&amp;gt;item&amp;lt;/code&amp;gt;&quot; folder.&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;−&lt;/td&gt;
  &lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;== ModPack List==&lt;/div&gt;&lt;/td&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;−&lt;/td&gt;
  &lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;{| border=&quot;0&quot; cellpadding=&quot;1&quot; cellspacing=&quot;1&quot; class=&quot;article-table article-table-selected&quot; style=&quot;width: 100%; height: 100%;&quot;&lt;/div&gt;&lt;/td&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;−&lt;/td&gt;
  &lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|-&lt;/div&gt;&lt;/td&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;−&lt;/td&gt;
  &lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;! scope=&quot;col&quot; style=&quot;width: 100px; height: 30px; text-align: center;&quot;|Author&lt;/div&gt;&lt;/td&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;−&lt;/td&gt;
  &lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;! scope=&quot;col&quot; style=&quot;text-align: center;&quot;|Modpack&lt;/div&gt;&lt;/td&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;−&lt;/td&gt;
  &lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;! scope=&quot;col&quot; style=&quot;text-align: center;&quot;|Version&lt;/div&gt;&lt;/td&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;−&lt;/td&gt;
  &lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;! scope=&quot;col&quot; style=&quot;text-align: right;&quot;|Terraria&lt;/div&gt;&lt;/td&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;−&lt;/td&gt;
  &lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;! scope=&quot;col&quot; style=&quot;text-align: center; width: 500px;&quot;|Description&lt;/div&gt;&lt;/td&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;−&lt;/td&gt;
  &lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|-&lt;/div&gt;&lt;/td&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;−&lt;/td&gt;
  &lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|[http://vk.com/rcreator Anton_ROTD]&lt;/div&gt;&lt;/td&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;−&lt;/td&gt;
  &lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|[http://www.terraria-rotd.l6.org/ Retribution of the Darkness]&lt;/div&gt;&lt;/td&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;−&lt;/td&gt;
  &lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;| style=&quot;text-align: center;&quot;|[http://adf.ly/L4j5E 1.7.1]&lt;/div&gt;&lt;/td&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;−&lt;/td&gt;
  &lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;| style=&quot;text-align: center;&quot;|1.1.2&lt;/div&gt;&lt;/td&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;−&lt;/td&gt;
  &lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|31 mods and more&lt;/div&gt;&lt;/td&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;−&lt;/td&gt;
  &lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|}&lt;/div&gt;&lt;/td&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;==1.1+ Compatible Mods==&lt;/div&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;==1.1+ Compatible Mods==&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 89:&lt;/td&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 74:&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|0.29.6&lt;/div&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|0.29.6&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|Adds a wide variety of items that for the most part have nothing to do with each other.&lt;/div&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|Adds a wide variety of items that for the most part have nothing to do with each other.&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|-&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|[http://vk.com/rcreator Anton_ROTD]&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|[http://www.terraria-rotd.l6.org/ Retribution of the Darkness]&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|&amp;lt;small&amp;gt;''(not specified)''&amp;lt;/small&amp;gt;&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-empty&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|31 mods and more, Russian setup/documentation only&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|-&lt;/div&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|-&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|[http://www.terrariaonline.com/members/xargon.56826/ Xargon]&lt;/div&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|[http://www.terrariaonline.com/members/xargon.56826/ Xargon]&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;!-- diff cache key tconfig:diff:version:1.11a:oldid:18137:newid:18138 --&gt;
&lt;/table&gt;</summary>
		<author><name>Equazcion</name></author>	</entry>

	<entry>
		<id>http://tconfig.wikia.com/wiki/ModPacks?diff=18137&amp;oldid=18125</id>
		<title>ModPacks</title>
		<link rel="alternate" type="text/html" href="http://tconfig.wikia.com/wiki/ModPacks?diff=18137&amp;oldid=18125"/>
				<updated>2013-06-12T15:15:42Z</updated>
		
		<summary type="html">&lt;p&gt;‎&lt;span dir=&quot;auto&quot;&gt;&lt;span class=&quot;autocomment&quot;&gt;1.1+ Compatible Mods: &lt;/span&gt; &lt;/span&gt;&lt;/p&gt;
&lt;table class='diff diff-contentalign-left'&gt;
				&lt;col class='diff-marker' /&gt;
				&lt;col class='diff-content' /&gt;
				&lt;col class='diff-marker' /&gt;
				&lt;col class='diff-content' /&gt;
			&lt;tr valign='top'&gt;
			&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;← Older revision&lt;/td&gt;
			&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;Revision as of 15:15, June 12, 2013&lt;/td&gt;
			&lt;/tr&gt;&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 56:&lt;/td&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 56:&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|[http://www.terrariaonline.com/members/drakoglyph.71839/ Pixel Mark Crusaders (Lead Programmer: DrakoGlyph)]&lt;/div&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|[http://www.terrariaonline.com/members/drakoglyph.71839/ Pixel Mark Crusaders (Lead Programmer: DrakoGlyph)]&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|[http://www.terrariaonline.com/threads/wip-pixel-mark-crusaders-my-little-pony-pack.99708/ Pixel Mark Crusaders' My Little Pony Pack]&lt;/div&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|[http://www.terrariaonline.com/threads/wip-pixel-mark-crusaders-my-little-pony-pack.99708/ Pixel Mark Crusaders' My Little Pony Pack]&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;−&lt;/td&gt;
  &lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|0.&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;32&lt;/span&gt;.0&lt;/div&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|0.&lt;span class=&quot;diffchange diffchange-inline&quot;&gt;33&lt;/span&gt;.0&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|A My Little Pony themed mod for all the Bronies in the Terraria Fandom&lt;/div&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|A My Little Pony themed mod for all the Bronies in the Terraria Fandom&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|-&lt;/div&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;&amp;#160;&lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;|-&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;!-- diff cache key tconfig:diff:version:1.11a:oldid:18125:newid:18137 --&gt;
&lt;/table&gt;</summary>
		<author><name>DrakoGlyph</name></author>	</entry>

	<entry>
		<id>http://tconfig.wikia.com/wiki/User:Deadlypig468</id>
		<title>User:Deadlypig468</title>
		<link rel="alternate" type="text/html" href="http://tconfig.wikia.com/wiki/User:Deadlypig468"/>
				<updated>2013-06-12T15:10:50Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;a href=&quot;/wiki/User:Deadlypig468&quot; class=&quot;new mw-userlink&quot; title=&quot;User:Deadlypig468 (page does not exist)&quot;&gt;Deadlypig468&lt;/a&gt; created a user account&lt;/p&gt;
</summary>
		<author><name>Deadlypig468</name></author>	</entry>

	<entry>
		<id>http://tconfig.wikia.com/wiki/Forum:Armor_set_bonus_particle_help!?diff=18136&amp;oldid=0</id>
		<title>Forum:Armor set bonus particle help!</title>
		<link rel="alternate" type="text/html" href="http://tconfig.wikia.com/wiki/Forum:Armor_set_bonus_particle_help!?diff=18136&amp;oldid=0"/>
				<updated>2013-06-12T15:08:50Z</updated>
		
		<summary type="html">&lt;p&gt;Created page with &amp;quot;&amp;lt;span style=&amp;quot;line-height:18.1875px;&amp;quot;&amp;gt;i have added the set bonus of decreased player speed to the armor, however i was wondering if there was a way that you can get rid of the ...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&amp;lt;span style=&amp;quot;line-height:18.1875px;&amp;quot;&amp;gt;i have added the set bonus of decreased player speed to the armor, however i was wondering if there was a way that you can get rid of the particles that the effect gives off? And if there's a way that you can decrease the jump height?&amp;lt;/span&amp;gt;&lt;/div&gt;</summary>
		<author><name>92.6.144.239</name></author>	</entry>

	<entry>
		<id>http://tconfig.wikia.com/wiki/Talk:Liquid_Class/@comment-70.80.127.146-20130612011924?diff=18134&amp;oldid=0</id>
		<title>Talk:Liquid Class/@comment-70.80.127.146-20130612011924</title>
		<link rel="alternate" type="text/html" href="http://tconfig.wikia.com/wiki/Talk:Liquid_Class/@comment-70.80.127.146-20130612011924?diff=18134&amp;oldid=0"/>
				<updated>2013-06-12T01:19:24Z</updated>
		
		<summary type="html">&lt;p&gt;Created page with &amp;quot;Do you think it is possible to create a completely new type of liquid?  I would like to create a sort of poisoned water that would spit out fumes that would damage players.&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Do you think it is possible to create a completely new type of liquid?&lt;br /&gt;
&lt;br /&gt;
I would like to create a sort of poisoned water that would spit out fumes that would damage players.&lt;/div&gt;</summary>
		<author><name>70.80.127.146</name></author>	</entry>

	</feed>