<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.factorio.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Kovarex</id>
	<title>Official Factorio Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.factorio.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Kovarex"/>
	<link rel="alternate" type="text/html" href="https://wiki.factorio.com/Special:Contributions/Kovarex"/>
	<updated>2026-06-03T19:33:07Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.5</generator>
	<entry>
		<id>https://wiki.factorio.com/index.php?title=Prototype/Recipe&amp;diff=158809</id>
		<title>Prototype/Recipe</title>
		<link rel="alternate" type="text/html" href="https://wiki.factorio.com/index.php?title=Prototype/Recipe&amp;diff=158809"/>
		<updated>2018-05-01T20:03:22Z</updated>

		<summary type="html">&lt;p&gt;Kovarex: Changed the bracket style to be consistent and the way it is written with the way how it is in base game.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Basics ==&lt;br /&gt;
A recipe. It can be a crafting recipe, a smelting recipe, or a custom type of recipe (see [[Prototype/RecipeCategory]]).&lt;br /&gt;
&lt;br /&gt;
== General properties ==&lt;br /&gt;
Inherits all properties from [[Prototype]].&lt;br /&gt;
&lt;br /&gt;
=== category ===&lt;br /&gt;
&#039;&#039;&#039;Type&#039;&#039;&#039;: [[Types/string]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Default&#039;&#039;&#039;: &amp;quot;crafting&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Optional. The category of this recipe. The default is &amp;quot;crafting&amp;quot;. The built-in categories can be found [[Data.raw#recipe-category|here]]. See also [[Prototype/RecipeCategory]].&lt;br /&gt;
&lt;br /&gt;
=== subgroup ===&lt;br /&gt;
&#039;&#039;&#039;Type&#039;&#039;&#039;: [[Types/string]]&lt;br /&gt;
&lt;br /&gt;
Optional. The subgroup of this recipe. If not specified, defaults to the subgroup of the product if there is only 1, or main_product if multiple products exist. If multiple products exit and no main_product is specified, the subgroup is required.&lt;br /&gt;
&lt;br /&gt;
=== icon ===&lt;br /&gt;
&#039;&#039;&#039;Type&#039;&#039;&#039;: [[Types/FileName]]&lt;br /&gt;
&lt;br /&gt;
Either icon or icons is mandatory for recipe with more than 1 product and no main_product. Otherwise defaults to the icon of main_product/1 product.&lt;br /&gt;
&lt;br /&gt;
If given, it overwrites the icon of the main_product/1 product.&lt;br /&gt;
&lt;br /&gt;
=== icon_size ===&lt;br /&gt;
&#039;&#039;&#039;Type&#039;&#039;&#039;: [[Types/uint]]&lt;br /&gt;
&lt;br /&gt;
Mandatory if &amp;quot;icon&amp;quot; is defined (regardless of whether icon is mandatory). The size of the square icon, in pixels, e.g. 32 for a 32px by 32px icon.&lt;br /&gt;
&lt;br /&gt;
=== icons ===&lt;br /&gt;
Either icon or icons is mandatory for recipe with more than 1 product and no main_product. Otherwise defaults to the icon of main_product/1 product.&lt;br /&gt;
&lt;br /&gt;
If given, it overwrites the icon of the main_product/1 product.&lt;br /&gt;
&lt;br /&gt;
=== crafting_machine_tint ===&lt;br /&gt;
&#039;&#039;&#039;Type&#039;&#039;&#039;: [[Types/table]] of [[Types/Color]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Default&#039;&#039;&#039;: nil&lt;br /&gt;
&lt;br /&gt;
Format:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;crafting_machine_tint = { primary = {r=0,g=0,b=0,a=0}, secondary = {r=0,g=0,b=0,a=0}, tertiary = {r=0,g=0,b=0,a=0}}&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Each key/value pair is optional and defaults to the above value.&lt;br /&gt;
&lt;br /&gt;
== Recipe data ==&lt;br /&gt;
If the recipe does not have a difficulty, this is located directly in the prototype. Otherwise, if the &amp;quot;normal&amp;quot; or &amp;quot;expensive&amp;quot; property exists, the recipe has difficulty. Then, the recipe data has to be specified for each difficulty instead of directly in the prototype. If at least one difficulty has recipe data defined, the other difficulty can be set to false. This will give it the exact same properties as the difficulty that is defined. See below for examples.&lt;br /&gt;
&lt;br /&gt;
=== ingredients ===&lt;br /&gt;
&#039;&#039;&#039;Type&#039;&#039;&#039;: [[Types/table]]&lt;br /&gt;
&lt;br /&gt;
A table containing ingredient names and counts. For example: &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ingredients = {{&amp;quot;iron-stick&amp;quot;, 2}, {&amp;quot;iron-plate&amp;quot;, 3}}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
or the same with full format:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ingredients = {{type = &amp;quot;item&amp;quot;, name = &amp;quot;iron-stick&amp;quot;, amount = 2}, {type = &amp;quot;item&amp;quot;, name = &amp;quot;iron-plate&amp;quot;, amount = 3}}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Maximal ingredient amount is 65535.&lt;br /&gt;
&lt;br /&gt;
=== result ===&lt;br /&gt;
&#039;&#039;&#039;Type&#039;&#039;&#039;: [[Types/string]]&lt;br /&gt;
&lt;br /&gt;
Can be replaced with the results parameter. The item created by this recipe. Must be the name of an item, such as &amp;quot;iron-gear-wheel&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
=== result_count ===&lt;br /&gt;
&#039;&#039;&#039;Type&#039;&#039;&#039;: [[Types/unsigned]]&lt;br /&gt;
&lt;br /&gt;
Optional. The number of items created by this recipe. The default is 1.&lt;br /&gt;
&lt;br /&gt;
=== results ===&lt;br /&gt;
&#039;&#039;&#039;Type&#039;&#039;&#039;: [[Types/table]]&lt;br /&gt;
&lt;br /&gt;
A table containing result names and counts. For example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
results=&lt;br /&gt;
    {&lt;br /&gt;
      {type=&amp;quot;fluid&amp;quot;, name=&amp;quot;heavy-oil&amp;quot;, amount=3},&lt;br /&gt;
      {type=&amp;quot;fluid&amp;quot;, name=&amp;quot;light-oil&amp;quot;, amount=3},&lt;br /&gt;
      {type=&amp;quot;fluid&amp;quot;, name=&amp;quot;petroleum-gas&amp;quot;, amount=4}&lt;br /&gt;
    },&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
results = &lt;br /&gt;
    {&lt;br /&gt;
      {type = &amp;quot;item&amp;quot;, name = &amp;quot;iron-nuggets&amp;quot;, amount = 9},&lt;br /&gt;
      {type = &amp;quot;item&amp;quot;, name = &amp;quot;gold-nuggets&amp;quot;, amount = 1}&lt;br /&gt;
     },&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== energy_required ===&lt;br /&gt;
&#039;&#039;&#039;Type&#039;&#039;&#039;: [[Types/double]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Default&#039;&#039;&#039;: 0.5&lt;br /&gt;
&lt;br /&gt;
Optional. The amount of time it takes to make this recipe.&lt;br /&gt;
&lt;br /&gt;
This is the number of seconds it takes to craft at crafting speed 1.&lt;br /&gt;
&lt;br /&gt;
=== emissions_multiplier ===&lt;br /&gt;
&#039;&#039;&#039;Type&#039;&#039;&#039;: [[Types/double]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Default&#039;&#039;&#039;: 1.0&lt;br /&gt;
&lt;br /&gt;
=== requester_paste_multiplier ===&lt;br /&gt;
&#039;&#039;&#039;Type&#039;&#039;&#039;: [[Types/uint]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Default&#039;&#039;&#039;: 30&lt;br /&gt;
&lt;br /&gt;
=== overload_multiplier ===&lt;br /&gt;
&#039;&#039;&#039;Type&#039;&#039;&#039;: [[Types/uint]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Default&#039;&#039;&#039;: 0&lt;br /&gt;
&lt;br /&gt;
=== enabled ===&lt;br /&gt;
&#039;&#039;&#039;Type&#039;&#039;&#039;: [[Types/bool]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Default&#039;&#039;&#039;: true&lt;br /&gt;
&lt;br /&gt;
Optional. This can be false to disable the recipe at the start of the game, or &amp;quot;true&amp;quot; to leave it enabled.&lt;br /&gt;
&lt;br /&gt;
If your recipe is unlocked by a technology, you should set this to &amp;quot;false&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
=== hidden ===&lt;br /&gt;
&#039;&#039;&#039;Type&#039;&#039;&#039;: [[Types/bool]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Default&#039;&#039;&#039;: false&lt;br /&gt;
&lt;br /&gt;
Optional. Hides the recipe from crafting menus.&lt;br /&gt;
&lt;br /&gt;
=== hide_from_stats ===&lt;br /&gt;
&#039;&#039;&#039;Type&#039;&#039;&#039;: [[Types/bool]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Default&#039;&#039;&#039;: false&lt;br /&gt;
&lt;br /&gt;
Optional. Hides the recipe from flow stats (production statistics).&lt;br /&gt;
&lt;br /&gt;
=== allow_decomposition ===&lt;br /&gt;
&#039;&#039;&#039;Type&#039;&#039;&#039;: [[Types/bool]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Default&#039;&#039;&#039;: true&lt;br /&gt;
&lt;br /&gt;
Optional. Whether the recipe can be broken down for &amp;quot;total-raw&amp;quot; calculations.&lt;br /&gt;
&lt;br /&gt;
=== allow_as_intermediate ===&lt;br /&gt;
&#039;&#039;&#039;Type&#039;&#039;&#039;: [[Types/bool]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Default&#039;&#039;&#039;: true&lt;br /&gt;
&lt;br /&gt;
Optional. Whether the recipe can be used as an intermediate recipe in hand-crafting.&lt;br /&gt;
&lt;br /&gt;
=== allow_intermediates ===&lt;br /&gt;
&#039;&#039;&#039;Type&#039;&#039;&#039;: [[Types/bool]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Default&#039;&#039;&#039;: true&lt;br /&gt;
&lt;br /&gt;
Optional. Whether the recipe is allowed to use intermediate recipes when hand-crafting.&lt;br /&gt;
&lt;br /&gt;
=== always_show_made_in ===&lt;br /&gt;
&#039;&#039;&#039;Type&#039;&#039;&#039;: [[Types/bool]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Default&#039;&#039;&#039;: false&lt;br /&gt;
&lt;br /&gt;
Optional. Whether the &amp;quot;Made in: {Machine}&amp;quot; part of the tool-tip should always be present, not only when the recipe can not be hand-crafted.&lt;br /&gt;
&lt;br /&gt;
=== show_amount_in_title ===&lt;br /&gt;
&#039;&#039;&#039;Type&#039;&#039;&#039;: [[Types/bool]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Default&#039;&#039;&#039;: true&lt;br /&gt;
&lt;br /&gt;
Optional. Whether the recipe name should have the product amount in front of it, e.g. &amp;quot;2 [[transport belt]]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== always_show_products ===&lt;br /&gt;
&#039;&#039;&#039;Type&#039;&#039;&#039;: [[Types/bool]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Default&#039;&#039;&#039;: false&lt;br /&gt;
&lt;br /&gt;
Optional. Whether the products are always shown in the recipe tool-tip.&lt;br /&gt;
&lt;br /&gt;
=== main_product ===&lt;br /&gt;
&#039;&#039;&#039;Type&#039;&#039;&#039;: [[Types/string]]&lt;br /&gt;
&lt;br /&gt;
Optional.&lt;br /&gt;
&lt;br /&gt;
For recipes with more than one product: This defines of which result the icon, subgroup and name is used. If it is not set and the recipe has more than 1 result the recipe will use the recipe-name and recipe-description locale and its own subgroup and icon.&lt;br /&gt;
&lt;br /&gt;
For recipes with 1 result: The recipe uses the icon, subgroup and name of the result by default. If set this property is set to an empty string, the recipe will use the properties of the recipe instead of the result.&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
&lt;br /&gt;
=== &amp;quot;iron-plate&amp;quot; ===&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
  {&lt;br /&gt;
    type = &amp;quot;recipe&amp;quot;,&lt;br /&gt;
    name = &amp;quot;iron-plate&amp;quot;,&lt;br /&gt;
    category = &amp;quot;smelting&amp;quot;,&lt;br /&gt;
    energy_required = 3.5,&lt;br /&gt;
    ingredients = {{&amp;quot;iron-ore&amp;quot;, 1}},&lt;br /&gt;
    result = &amp;quot;iron-plate&amp;quot;&lt;br /&gt;
  }&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;quot;coal-liquefaction&amp;quot; ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;{&lt;br /&gt;
  type = &amp;quot;recipe&amp;quot;,&lt;br /&gt;
  name = &amp;quot;coal-liquefaction&amp;quot;,&lt;br /&gt;
&lt;br /&gt;
  category = &amp;quot;oil-processing&amp;quot;,&lt;br /&gt;
  subgroup = &amp;quot;fluid-recipes&amp;quot;,&lt;br /&gt;
  order = &amp;quot;a[oil-processing]-c[coal-liquefaction]&amp;quot;,&lt;br /&gt;
&lt;br /&gt;
  enabled = false,&lt;br /&gt;
  energy_required = 5,&lt;br /&gt;
  icon = &amp;quot;__base__/graphics/icons/fluid/coal-liquefaction.png&amp;quot;,&lt;br /&gt;
  ingredients =&lt;br /&gt;
    {&lt;br /&gt;
      {type=&amp;quot;item&amp;quot;, name=&amp;quot;coal&amp;quot;, amount=10},&lt;br /&gt;
      {type=&amp;quot;fluid&amp;quot;, name=&amp;quot;heavy-oil&amp;quot;, amount=25},&lt;br /&gt;
      {type=&amp;quot;fluid&amp;quot;, name=&amp;quot;steam&amp;quot;, amount=50}&lt;br /&gt;
    },&lt;br /&gt;
    results=&lt;br /&gt;
    {&lt;br /&gt;
      {type=&amp;quot;fluid&amp;quot;, name=&amp;quot;heavy-oil&amp;quot;, amount=35},&lt;br /&gt;
      {type=&amp;quot;fluid&amp;quot;, name=&amp;quot;light-oil&amp;quot;, amount=15},&lt;br /&gt;
      {type=&amp;quot;fluid&amp;quot;, name=&amp;quot;petroleum-gas&amp;quot;, amount=20}&lt;br /&gt;
    }&lt;br /&gt;
  },&lt;br /&gt;
  allow_decomposition = false&lt;br /&gt;
}&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;quot;iron-gear-wheel&amp;quot; — recipe with difficulty ===&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;  {&lt;br /&gt;
    type = &amp;quot;recipe&amp;quot;,&lt;br /&gt;
    name = &amp;quot;iron-gear-wheel&amp;quot;,&lt;br /&gt;
    normal =&lt;br /&gt;
    {&lt;br /&gt;
      ingredients = {{&amp;quot;iron-plate&amp;quot;, 2}},&lt;br /&gt;
      result = &amp;quot;iron-gear-wheel&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    expensive =&lt;br /&gt;
    {&lt;br /&gt;
      ingredients = {{&amp;quot;iron-plate&amp;quot;, 4}},&lt;br /&gt;
      result = &amp;quot;iron-gear-wheel&amp;quot;&lt;br /&gt;
    }&lt;br /&gt;
  },&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Modified so that the expensive recipe is always used, even in normal mode ====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;  {&lt;br /&gt;
    type = &amp;quot;recipe&amp;quot;,&lt;br /&gt;
    name = &amp;quot;iron-gear-wheel&amp;quot;,&lt;br /&gt;
    normal = false,&lt;br /&gt;
    expensive =&lt;br /&gt;
    {&lt;br /&gt;
      ingredients = {{&amp;quot;iron-plate&amp;quot;, 4}},&lt;br /&gt;
      result = &amp;quot;iron-gear-wheel&amp;quot;&lt;br /&gt;
    }&lt;br /&gt;
  },&amp;lt;/syntaxhighlight&amp;gt;&lt;/div&gt;</summary>
		<author><name>Kovarex</name></author>
	</entry>
	<entry>
		<id>https://wiki.factorio.com/index.php?title=User_talk:StarFox31&amp;diff=124830</id>
		<title>User talk:StarFox31</title>
		<link rel="alternate" type="text/html" href="https://wiki.factorio.com/index.php?title=User_talk:StarFox31&amp;diff=124830"/>
		<updated>2016-05-02T08:39:28Z</updated>

		<summary type="html">&lt;p&gt;Kovarex: Welcome!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Welcome to &#039;&#039;factorio&#039;&#039;!&#039;&#039;&#039;&lt;br /&gt;
We hope you will contribute much and well.&lt;br /&gt;
You will probably want to read the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents help pages].&lt;br /&gt;
Again, welcome and have fun! [[User:Kovarex|Kovarex]] ([[User talk:Kovarex|talk]]) 08:39, 2 May 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>Kovarex</name></author>
	</entry>
	<entry>
		<id>https://wiki.factorio.com/index.php?title=User:StarFox31&amp;diff=124829</id>
		<title>User:StarFox31</title>
		<link rel="alternate" type="text/html" href="https://wiki.factorio.com/index.php?title=User:StarFox31&amp;diff=124829"/>
		<updated>2016-05-02T08:39:28Z</updated>

		<summary type="html">&lt;p&gt;Kovarex: Creating user page for new user.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I have enjoyed this game quite immensely and want to contribute to its success by assisting on the Wiki.&lt;/div&gt;</summary>
		<author><name>Kovarex</name></author>
	</entry>
	<entry>
		<id>https://wiki.factorio.com/index.php?title=User_talk:Kitsune&amp;diff=124828</id>
		<title>User talk:Kitsune</title>
		<link rel="alternate" type="text/html" href="https://wiki.factorio.com/index.php?title=User_talk:Kitsune&amp;diff=124828"/>
		<updated>2016-05-02T08:39:22Z</updated>

		<summary type="html">&lt;p&gt;Kovarex: Welcome!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Welcome to &#039;&#039;factorio&#039;&#039;!&#039;&#039;&#039;&lt;br /&gt;
We hope you will contribute much and well.&lt;br /&gt;
You will probably want to read the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents help pages].&lt;br /&gt;
Again, welcome and have fun! [[User:Kovarex|Kovarex]] ([[User talk:Kovarex|talk]]) 08:39, 2 May 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>Kovarex</name></author>
	</entry>
	<entry>
		<id>https://wiki.factorio.com/index.php?title=User:Kitsune&amp;diff=124827</id>
		<title>User:Kitsune</title>
		<link rel="alternate" type="text/html" href="https://wiki.factorio.com/index.php?title=User:Kitsune&amp;diff=124827"/>
		<updated>2016-05-02T08:39:22Z</updated>

		<summary type="html">&lt;p&gt;Kovarex: Creating user page for new user.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi, I&#039;m a long time factorio fan from germany&lt;/div&gt;</summary>
		<author><name>Kovarex</name></author>
	</entry>
	<entry>
		<id>https://wiki.factorio.com/index.php?title=User_talk:Jonhwoods&amp;diff=124823</id>
		<title>User talk:Jonhwoods</title>
		<link rel="alternate" type="text/html" href="https://wiki.factorio.com/index.php?title=User_talk:Jonhwoods&amp;diff=124823"/>
		<updated>2016-04-30T07:48:54Z</updated>

		<summary type="html">&lt;p&gt;Kovarex: Welcome!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Welcome to &#039;&#039;factorio&#039;&#039;!&#039;&#039;&#039;&lt;br /&gt;
We hope you will contribute much and well.&lt;br /&gt;
You will probably want to read the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents help pages].&lt;br /&gt;
Again, welcome and have fun! [[User:Kovarex|Kovarex]] ([[User talk:Kovarex|talk]]) 07:48, 30 April 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>Kovarex</name></author>
	</entry>
	<entry>
		<id>https://wiki.factorio.com/index.php?title=User:Jonhwoods&amp;diff=124822</id>
		<title>User:Jonhwoods</title>
		<link rel="alternate" type="text/html" href="https://wiki.factorio.com/index.php?title=User:Jonhwoods&amp;diff=124822"/>
		<updated>2016-04-30T07:48:54Z</updated>

		<summary type="html">&lt;p&gt;Kovarex: Creating user page for new user.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I am an engineer who loves Factorio and adding stuff to the wiki.&lt;/div&gt;</summary>
		<author><name>Kovarex</name></author>
	</entry>
	<entry>
		<id>https://wiki.factorio.com/index.php?title=User_talk:Tregan&amp;diff=124821</id>
		<title>User talk:Tregan</title>
		<link rel="alternate" type="text/html" href="https://wiki.factorio.com/index.php?title=User_talk:Tregan&amp;diff=124821"/>
		<updated>2016-04-30T07:48:49Z</updated>

		<summary type="html">&lt;p&gt;Kovarex: Welcome!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Welcome to &#039;&#039;factorio&#039;&#039;!&#039;&#039;&#039;&lt;br /&gt;
We hope you will contribute much and well.&lt;br /&gt;
You will probably want to read the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents help pages].&lt;br /&gt;
Again, welcome and have fun! [[User:Kovarex|Kovarex]] ([[User talk:Kovarex|talk]]) 07:48, 30 April 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>Kovarex</name></author>
	</entry>
	<entry>
		<id>https://wiki.factorio.com/index.php?title=User:Tregan&amp;diff=124820</id>
		<title>User:Tregan</title>
		<link rel="alternate" type="text/html" href="https://wiki.factorio.com/index.php?title=User:Tregan&amp;diff=124820"/>
		<updated>2016-04-30T07:48:49Z</updated>

		<summary type="html">&lt;p&gt;Kovarex: Creating user page for new user.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I am a general dabbler and aspiring mad scientist.&lt;/div&gt;</summary>
		<author><name>Kovarex</name></author>
	</entry>
	<entry>
		<id>https://wiki.factorio.com/index.php?title=User_talk:Captain_Ford&amp;diff=124819</id>
		<title>User talk:Captain Ford</title>
		<link rel="alternate" type="text/html" href="https://wiki.factorio.com/index.php?title=User_talk:Captain_Ford&amp;diff=124819"/>
		<updated>2016-04-30T07:48:44Z</updated>

		<summary type="html">&lt;p&gt;Kovarex: Welcome!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Welcome to &#039;&#039;factorio&#039;&#039;!&#039;&#039;&#039;&lt;br /&gt;
We hope you will contribute much and well.&lt;br /&gt;
You will probably want to read the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents help pages].&lt;br /&gt;
Again, welcome and have fun! [[User:Kovarex|Kovarex]] ([[User talk:Kovarex|talk]]) 07:48, 30 April 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>Kovarex</name></author>
	</entry>
	<entry>
		<id>https://wiki.factorio.com/index.php?title=User:Captain_Ford&amp;diff=124818</id>
		<title>User:Captain Ford</title>
		<link rel="alternate" type="text/html" href="https://wiki.factorio.com/index.php?title=User:Captain_Ford&amp;diff=124818"/>
		<updated>2016-04-30T07:48:44Z</updated>

		<summary type="html">&lt;p&gt;Kovarex: Creating user page for new user.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I&#039;m a lifelong American programmer who quite enjoys Factorio and other similar games - Minecraft, Spacechem, Infinifactory, TIS-100 are the ones that come to mind.&lt;/div&gt;</summary>
		<author><name>Kovarex</name></author>
	</entry>
	<entry>
		<id>https://wiki.factorio.com/index.php?title=User_talk:Dukex123&amp;diff=124817</id>
		<title>User talk:Dukex123</title>
		<link rel="alternate" type="text/html" href="https://wiki.factorio.com/index.php?title=User_talk:Dukex123&amp;diff=124817"/>
		<updated>2016-04-30T07:48:39Z</updated>

		<summary type="html">&lt;p&gt;Kovarex: Welcome!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Welcome to &#039;&#039;factorio&#039;&#039;!&#039;&#039;&#039;&lt;br /&gt;
We hope you will contribute much and well.&lt;br /&gt;
You will probably want to read the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents help pages].&lt;br /&gt;
Again, welcome and have fun! [[User:Kovarex|Kovarex]] ([[User talk:Kovarex|talk]]) 07:48, 30 April 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>Kovarex</name></author>
	</entry>
	<entry>
		<id>https://wiki.factorio.com/index.php?title=User:Dukex123&amp;diff=124816</id>
		<title>User:Dukex123</title>
		<link rel="alternate" type="text/html" href="https://wiki.factorio.com/index.php?title=User:Dukex123&amp;diff=124816"/>
		<updated>2016-04-30T07:48:39Z</updated>

		<summary type="html">&lt;p&gt;Kovarex: Creating user page for new user.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I&#039;m a software developer for seven year. Working mostly with c++, c# and lua.&lt;/div&gt;</summary>
		<author><name>Kovarex</name></author>
	</entry>
	<entry>
		<id>https://wiki.factorio.com/index.php?title=User_talk:Geilo3&amp;diff=124815</id>
		<title>User talk:Geilo3</title>
		<link rel="alternate" type="text/html" href="https://wiki.factorio.com/index.php?title=User_talk:Geilo3&amp;diff=124815"/>
		<updated>2016-04-30T07:48:34Z</updated>

		<summary type="html">&lt;p&gt;Kovarex: Welcome!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Welcome to &#039;&#039;factorio&#039;&#039;!&#039;&#039;&#039;&lt;br /&gt;
We hope you will contribute much and well.&lt;br /&gt;
You will probably want to read the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents help pages].&lt;br /&gt;
Again, welcome and have fun! [[User:Kovarex|Kovarex]] ([[User talk:Kovarex|talk]]) 07:48, 30 April 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>Kovarex</name></author>
	</entry>
	<entry>
		<id>https://wiki.factorio.com/index.php?title=User:Geilo3&amp;diff=124814</id>
		<title>User:Geilo3</title>
		<link rel="alternate" type="text/html" href="https://wiki.factorio.com/index.php?title=User:Geilo3&amp;diff=124814"/>
		<updated>2016-04-30T07:48:34Z</updated>

		<summary type="html">&lt;p&gt;Kovarex: Creating user page for new user.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I love factorio so please leave my and my pc alone.&lt;/div&gt;</summary>
		<author><name>Kovarex</name></author>
	</entry>
	<entry>
		<id>https://wiki.factorio.com/index.php?title=User_talk:Tincopper2&amp;diff=124813</id>
		<title>User talk:Tincopper2</title>
		<link rel="alternate" type="text/html" href="https://wiki.factorio.com/index.php?title=User_talk:Tincopper2&amp;diff=124813"/>
		<updated>2016-04-30T07:48:18Z</updated>

		<summary type="html">&lt;p&gt;Kovarex: Welcome!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Welcome to &#039;&#039;factorio&#039;&#039;!&#039;&#039;&#039;&lt;br /&gt;
We hope you will contribute much and well.&lt;br /&gt;
You will probably want to read the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents help pages].&lt;br /&gt;
Again, welcome and have fun! [[User:Kovarex|Kovarex]] ([[User talk:Kovarex|talk]]) 07:48, 30 April 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>Kovarex</name></author>
	</entry>
	<entry>
		<id>https://wiki.factorio.com/index.php?title=User:Tincopper2&amp;diff=124812</id>
		<title>User:Tincopper2</title>
		<link rel="alternate" type="text/html" href="https://wiki.factorio.com/index.php?title=User:Tincopper2&amp;diff=124812"/>
		<updated>2016-04-30T07:48:18Z</updated>

		<summary type="html">&lt;p&gt;Kovarex: Creating user page for new user.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I have been playing the game for about four months, and have an average level of intellect for a casual player of factorio as of right now. I have not beaten the game yet, but I have been playing with modpacks and a few mods such as FARL, railtanker, flowcontrol, 5dims modpack etc. on peaceful, set up train tracks and built a blue research pack factory aswell as roboports filled with logistic and construction bots. I have played for a total cumulative time (among all of my saves) of ~236 hours. I host a dedicated factorio server running 24/7 that my friends can connect to with minimal lag, since most of the time they come to my house to join the server via lan.&lt;br /&gt;
&lt;br /&gt;
Apart from factorio, &lt;br /&gt;
I am experienced in numerous programming languages (it gets easier after you learn just one) such as Java (Minecraft plugins, also wrote a server from scratch with a client, that can connect to eachother with a GUI that sends stuff, also turn based keyboard/text controlled RPG that reads tilemap info from a bitmap, spritemap readers etc), C#(for unity game developement, tried making a platformer only got so far), C++(got in trouble once for testing out a keylogger made from scratch on my sibling, needless to say they got mad, also setup a program that can detect phrases being said and converts them into well written predefined sentences, for instance writing &amp;quot;hi2&amp;quot; would rewrite itself into &amp;quot;Hello, how are you?&amp;quot;), AS2/3(Flash programming object based language, one of my favorites, really mixes the graphics and code in an intuitive and cool way, I made a stock market simulator and platformer, also animate a bit in there), JS(unity aswell as a tad bit of HTML5 canvas), PHP(scripted a lot in this for my website I was making from scratch, made a login/register script, a website memberlist script aswell as several other SQL table involved scripts), TIBasic (first language learned, on calculator, then learned AXE assembly styled language) LUA (Garry&#039;s mod, computercraft minecraft mod)&lt;br /&gt;
I am also an avid gamer, and play a WIDE diversity of games. Sandbox, RPG, FPS, MOBA, RTS etc, always like to try new things.&lt;br /&gt;
&lt;br /&gt;
The reason I honestly wanted to make an account on the forums is for one spellchecking, I noticed a lot of areas it didn&#039;t seem like somebody went through and took there time on some pages. For instance a lot of exclamation points where there probably shouldn&#039;t be, grammar and capitalization errors and spots where certain things are explained more than once. I don&#039;t mean to sound mean by being a grammar nazi towards the less linguistic contributors, but it&#039;s not about pointing out someones mistakes, it&#039;s about showing everyone the right way to go about something.&lt;br /&gt;
&lt;br /&gt;
Another big reason is because I realize this wiki is indeed a project in development, and would like to contribute to providing new pages and information. I already have some plans for a multiplayer dedicated server page, if that&#039;s okay.&lt;/div&gt;</summary>
		<author><name>Kovarex</name></author>
	</entry>
	<entry>
		<id>https://wiki.factorio.com/index.php?title=User_talk:Mkaartin&amp;diff=124768</id>
		<title>User talk:Mkaartin</title>
		<link rel="alternate" type="text/html" href="https://wiki.factorio.com/index.php?title=User_talk:Mkaartin&amp;diff=124768"/>
		<updated>2016-04-26T22:08:01Z</updated>

		<summary type="html">&lt;p&gt;Kovarex: Welcome!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Welcome to &#039;&#039;factorio&#039;&#039;!&#039;&#039;&#039;&lt;br /&gt;
We hope you will contribute much and well.&lt;br /&gt;
You will probably want to read the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents help pages].&lt;br /&gt;
Again, welcome and have fun! [[User:Kovarex|Kovarex]] ([[User talk:Kovarex|talk]]) 22:08, 26 April 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>Kovarex</name></author>
	</entry>
	<entry>
		<id>https://wiki.factorio.com/index.php?title=User:Mkaartin&amp;diff=124767</id>
		<title>User:Mkaartin</title>
		<link rel="alternate" type="text/html" href="https://wiki.factorio.com/index.php?title=User:Mkaartin&amp;diff=124767"/>
		<updated>2016-04-26T22:08:01Z</updated>

		<summary type="html">&lt;p&gt;Kovarex: Creating user page for new user.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Bought game.&lt;br /&gt;
Look for info. Witch was nbot found.&lt;br /&gt;
Find info.&lt;br /&gt;
Wish to copy-paste for future reference.&lt;/div&gt;</summary>
		<author><name>Kovarex</name></author>
	</entry>
	<entry>
		<id>https://wiki.factorio.com/index.php?title=User_talk:Icronace&amp;diff=124766</id>
		<title>User talk:Icronace</title>
		<link rel="alternate" type="text/html" href="https://wiki.factorio.com/index.php?title=User_talk:Icronace&amp;diff=124766"/>
		<updated>2016-04-26T22:07:56Z</updated>

		<summary type="html">&lt;p&gt;Kovarex: Welcome!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Welcome to &#039;&#039;factorio&#039;&#039;!&#039;&#039;&#039;&lt;br /&gt;
We hope you will contribute much and well.&lt;br /&gt;
You will probably want to read the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents help pages].&lt;br /&gt;
Again, welcome and have fun! [[User:Kovarex|Kovarex]] ([[User talk:Kovarex|talk]]) 22:07, 26 April 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>Kovarex</name></author>
	</entry>
	<entry>
		<id>https://wiki.factorio.com/index.php?title=User:Icronace&amp;diff=124765</id>
		<title>User:Icronace</title>
		<link rel="alternate" type="text/html" href="https://wiki.factorio.com/index.php?title=User:Icronace&amp;diff=124765"/>
		<updated>2016-04-26T22:07:56Z</updated>

		<summary type="html">&lt;p&gt;Kovarex: Creating user page for new user.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I am a hardware engineer and software developer and can C++, Assembler, PHP, Java and VHDL. I come from germany, thuringia and like cookies :D.&lt;/div&gt;</summary>
		<author><name>Kovarex</name></author>
	</entry>
	<entry>
		<id>https://wiki.factorio.com/index.php?title=User_talk:T-Red&amp;diff=124764</id>
		<title>User talk:T-Red</title>
		<link rel="alternate" type="text/html" href="https://wiki.factorio.com/index.php?title=User_talk:T-Red&amp;diff=124764"/>
		<updated>2016-04-26T22:07:49Z</updated>

		<summary type="html">&lt;p&gt;Kovarex: Welcome!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Welcome to &#039;&#039;factorio&#039;&#039;!&#039;&#039;&#039;&lt;br /&gt;
We hope you will contribute much and well.&lt;br /&gt;
You will probably want to read the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents help pages].&lt;br /&gt;
Again, welcome and have fun! [[User:Kovarex|Kovarex]] ([[User talk:Kovarex|talk]]) 22:07, 26 April 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>Kovarex</name></author>
	</entry>
	<entry>
		<id>https://wiki.factorio.com/index.php?title=User:T-Red&amp;diff=124763</id>
		<title>User:T-Red</title>
		<link rel="alternate" type="text/html" href="https://wiki.factorio.com/index.php?title=User:T-Red&amp;diff=124763"/>
		<updated>2016-04-26T22:07:49Z</updated>

		<summary type="html">&lt;p&gt;Kovarex: Creating user page for new user.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I want to work on better Russian translation of the wiki and (if possible) of the game.&lt;/div&gt;</summary>
		<author><name>Kovarex</name></author>
	</entry>
	<entry>
		<id>https://wiki.factorio.com/index.php?title=User_talk:Dgw&amp;diff=124757</id>
		<title>User talk:Dgw</title>
		<link rel="alternate" type="text/html" href="https://wiki.factorio.com/index.php?title=User_talk:Dgw&amp;diff=124757"/>
		<updated>2016-04-26T06:09:12Z</updated>

		<summary type="html">&lt;p&gt;Kovarex: Welcome!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Welcome to &#039;&#039;factorio&#039;&#039;!&#039;&#039;&#039;&lt;br /&gt;
We hope you will contribute much and well.&lt;br /&gt;
You will probably want to read the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents help pages].&lt;br /&gt;
Again, welcome and have fun! [[User:Kovarex|Kovarex]] ([[User talk:Kovarex|talk]]) 06:09, 26 April 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>Kovarex</name></author>
	</entry>
	<entry>
		<id>https://wiki.factorio.com/index.php?title=User:Dgw&amp;diff=124756</id>
		<title>User:Dgw</title>
		<link rel="alternate" type="text/html" href="https://wiki.factorio.com/index.php?title=User:Dgw&amp;diff=124756"/>
		<updated>2016-04-26T06:09:12Z</updated>

		<summary type="html">&lt;p&gt;Kovarex: Creating user page for new user.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Obsessed with this game, and I don&#039;t even own it yet. Currently saving up for a copy.&lt;/div&gt;</summary>
		<author><name>Kovarex</name></author>
	</entry>
	<entry>
		<id>https://wiki.factorio.com/index.php?title=User_talk:Rx7raven&amp;diff=124755</id>
		<title>User talk:Rx7raven</title>
		<link rel="alternate" type="text/html" href="https://wiki.factorio.com/index.php?title=User_talk:Rx7raven&amp;diff=124755"/>
		<updated>2016-04-26T06:09:06Z</updated>

		<summary type="html">&lt;p&gt;Kovarex: Welcome!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Welcome to &#039;&#039;factorio&#039;&#039;!&#039;&#039;&#039;&lt;br /&gt;
We hope you will contribute much and well.&lt;br /&gt;
You will probably want to read the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents help pages].&lt;br /&gt;
Again, welcome and have fun! [[User:Kovarex|Kovarex]] ([[User talk:Kovarex|talk]]) 06:09, 26 April 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>Kovarex</name></author>
	</entry>
	<entry>
		<id>https://wiki.factorio.com/index.php?title=User:Rx7raven&amp;diff=124754</id>
		<title>User:Rx7raven</title>
		<link rel="alternate" type="text/html" href="https://wiki.factorio.com/index.php?title=User:Rx7raven&amp;diff=124754"/>
		<updated>2016-04-26T06:09:06Z</updated>

		<summary type="html">&lt;p&gt;Kovarex: Creating user page for new user.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;IT Consultant for a High Ed University.  Enjoying gaming and hockey as hobbies.&lt;/div&gt;</summary>
		<author><name>Kovarex</name></author>
	</entry>
	<entry>
		<id>https://wiki.factorio.com/index.php?title=User_talk:Fireball&amp;diff=124753</id>
		<title>User talk:Fireball</title>
		<link rel="alternate" type="text/html" href="https://wiki.factorio.com/index.php?title=User_talk:Fireball&amp;diff=124753"/>
		<updated>2016-04-26T06:08:59Z</updated>

		<summary type="html">&lt;p&gt;Kovarex: Welcome!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Welcome to &#039;&#039;factorio&#039;&#039;!&#039;&#039;&#039;&lt;br /&gt;
We hope you will contribute much and well.&lt;br /&gt;
You will probably want to read the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents help pages].&lt;br /&gt;
Again, welcome and have fun! [[User:Kovarex|Kovarex]] ([[User talk:Kovarex|talk]]) 06:08, 26 April 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>Kovarex</name></author>
	</entry>
	<entry>
		<id>https://wiki.factorio.com/index.php?title=User:Fireball&amp;diff=124752</id>
		<title>User:Fireball</title>
		<link rel="alternate" type="text/html" href="https://wiki.factorio.com/index.php?title=User:Fireball&amp;diff=124752"/>
		<updated>2016-04-26T06:08:59Z</updated>

		<summary type="html">&lt;p&gt;Kovarex: Creating user page for new user.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Just a little on-my-own Factorio player. Eight words&lt;/div&gt;</summary>
		<author><name>Kovarex</name></author>
	</entry>
	<entry>
		<id>https://wiki.factorio.com/index.php?title=User_talk:Tiiara&amp;diff=124750</id>
		<title>User talk:Tiiara</title>
		<link rel="alternate" type="text/html" href="https://wiki.factorio.com/index.php?title=User_talk:Tiiara&amp;diff=124750"/>
		<updated>2016-04-25T21:27:08Z</updated>

		<summary type="html">&lt;p&gt;Kovarex: Welcome!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Welcome to &#039;&#039;factorio&#039;&#039;!&#039;&#039;&#039;&lt;br /&gt;
We hope you will contribute much and well.&lt;br /&gt;
You will probably want to read the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents help pages].&lt;br /&gt;
Again, welcome and have fun! [[User:Kovarex|Kovarex]] ([[User talk:Kovarex|talk]]) 21:27, 25 April 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>Kovarex</name></author>
	</entry>
	<entry>
		<id>https://wiki.factorio.com/index.php?title=User:Tiiara&amp;diff=124749</id>
		<title>User:Tiiara</title>
		<link rel="alternate" type="text/html" href="https://wiki.factorio.com/index.php?title=User:Tiiara&amp;diff=124749"/>
		<updated>2016-04-25T21:27:08Z</updated>

		<summary type="html">&lt;p&gt;Kovarex: Creating user page for new user.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Started playing Factorio in April 2016 and found some wiki pages in need of editing or missing altogether.&lt;/div&gt;</summary>
		<author><name>Kovarex</name></author>
	</entry>
	<entry>
		<id>https://wiki.factorio.com/index.php?title=User_talk:Dougantor&amp;diff=124748</id>
		<title>User talk:Dougantor</title>
		<link rel="alternate" type="text/html" href="https://wiki.factorio.com/index.php?title=User_talk:Dougantor&amp;diff=124748"/>
		<updated>2016-04-25T21:27:02Z</updated>

		<summary type="html">&lt;p&gt;Kovarex: Welcome!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Welcome to &#039;&#039;factorio&#039;&#039;!&#039;&#039;&#039;&lt;br /&gt;
We hope you will contribute much and well.&lt;br /&gt;
You will probably want to read the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents help pages].&lt;br /&gt;
Again, welcome and have fun! [[User:Kovarex|Kovarex]] ([[User talk:Kovarex|talk]]) 21:27, 25 April 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>Kovarex</name></author>
	</entry>
	<entry>
		<id>https://wiki.factorio.com/index.php?title=User:Dougantor&amp;diff=124747</id>
		<title>User:Dougantor</title>
		<link rel="alternate" type="text/html" href="https://wiki.factorio.com/index.php?title=User:Dougantor&amp;diff=124747"/>
		<updated>2016-04-25T21:27:02Z</updated>

		<summary type="html">&lt;p&gt;Kovarex: Creating user page for new user.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Only recently got factorio yet have already racked up over 100 hours, including 36 in the first two days.&lt;/div&gt;</summary>
		<author><name>Kovarex</name></author>
	</entry>
	<entry>
		<id>https://wiki.factorio.com/index.php?title=User_talk:DaLoller&amp;diff=124746</id>
		<title>User talk:DaLoller</title>
		<link rel="alternate" type="text/html" href="https://wiki.factorio.com/index.php?title=User_talk:DaLoller&amp;diff=124746"/>
		<updated>2016-04-25T21:26:57Z</updated>

		<summary type="html">&lt;p&gt;Kovarex: Welcome!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Welcome to &#039;&#039;factorio&#039;&#039;!&#039;&#039;&#039;&lt;br /&gt;
We hope you will contribute much and well.&lt;br /&gt;
You will probably want to read the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents help pages].&lt;br /&gt;
Again, welcome and have fun! [[User:Kovarex|Kovarex]] ([[User talk:Kovarex|talk]]) 21:26, 25 April 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>Kovarex</name></author>
	</entry>
	<entry>
		<id>https://wiki.factorio.com/index.php?title=User:DaLoller&amp;diff=124745</id>
		<title>User:DaLoller</title>
		<link rel="alternate" type="text/html" href="https://wiki.factorio.com/index.php?title=User:DaLoller&amp;diff=124745"/>
		<updated>2016-04-25T21:26:57Z</updated>

		<summary type="html">&lt;p&gt;Kovarex: Creating user page for new user.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I&#039;m not quite sure what to say here... I don&#039;t feel well giving away my bio... Sorry about that!&lt;/div&gt;</summary>
		<author><name>Kovarex</name></author>
	</entry>
	<entry>
		<id>https://wiki.factorio.com/index.php?title=User_talk:Borkenator&amp;diff=124744</id>
		<title>User talk:Borkenator</title>
		<link rel="alternate" type="text/html" href="https://wiki.factorio.com/index.php?title=User_talk:Borkenator&amp;diff=124744"/>
		<updated>2016-04-25T21:26:48Z</updated>

		<summary type="html">&lt;p&gt;Kovarex: Welcome!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Welcome to &#039;&#039;factorio&#039;&#039;!&#039;&#039;&#039;&lt;br /&gt;
We hope you will contribute much and well.&lt;br /&gt;
You will probably want to read the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents help pages].&lt;br /&gt;
Again, welcome and have fun! [[User:Kovarex|Kovarex]] ([[User talk:Kovarex|talk]]) 21:26, 25 April 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>Kovarex</name></author>
	</entry>
	<entry>
		<id>https://wiki.factorio.com/index.php?title=User:Borkenator&amp;diff=124743</id>
		<title>User:Borkenator</title>
		<link rel="alternate" type="text/html" href="https://wiki.factorio.com/index.php?title=User:Borkenator&amp;diff=124743"/>
		<updated>2016-04-25T21:26:48Z</updated>

		<summary type="html">&lt;p&gt;Kovarex: Creating user page for new user.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Business Owner - IT Administrator - Software Engineer: Yup doing the whole career thing backward and loving it :)&lt;br /&gt;
&lt;br /&gt;
Factorio gives my brothers and friends a place to hang out and do something collaboratively. Thanks for the great game.&lt;/div&gt;</summary>
		<author><name>Kovarex</name></author>
	</entry>
	<entry>
		<id>https://wiki.factorio.com/index.php?title=User_talk:Lexmechanic&amp;diff=124742</id>
		<title>User talk:Lexmechanic</title>
		<link rel="alternate" type="text/html" href="https://wiki.factorio.com/index.php?title=User_talk:Lexmechanic&amp;diff=124742"/>
		<updated>2016-04-25T21:26:43Z</updated>

		<summary type="html">&lt;p&gt;Kovarex: Welcome!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Welcome to &#039;&#039;factorio&#039;&#039;!&#039;&#039;&#039;&lt;br /&gt;
We hope you will contribute much and well.&lt;br /&gt;
You will probably want to read the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents help pages].&lt;br /&gt;
Again, welcome and have fun! [[User:Kovarex|Kovarex]] ([[User talk:Kovarex|talk]]) 21:26, 25 April 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>Kovarex</name></author>
	</entry>
	<entry>
		<id>https://wiki.factorio.com/index.php?title=User:Lexmechanic&amp;diff=124741</id>
		<title>User:Lexmechanic</title>
		<link rel="alternate" type="text/html" href="https://wiki.factorio.com/index.php?title=User:Lexmechanic&amp;diff=124741"/>
		<updated>2016-04-25T21:26:43Z</updated>

		<summary type="html">&lt;p&gt;Kovarex: Creating user page for new user.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I&#039;m an experienced wiki contributor and have occasionally been an adoptive admin on a temporary basis. I have an eye for detail and am quite proficient with grammar and formatting. I&#039;d like to help out, a bit.&lt;/div&gt;</summary>
		<author><name>Kovarex</name></author>
	</entry>
	<entry>
		<id>https://wiki.factorio.com/index.php?title=User_talk:Arcien&amp;diff=124740</id>
		<title>User talk:Arcien</title>
		<link rel="alternate" type="text/html" href="https://wiki.factorio.com/index.php?title=User_talk:Arcien&amp;diff=124740"/>
		<updated>2016-04-25T21:26:37Z</updated>

		<summary type="html">&lt;p&gt;Kovarex: Welcome!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Welcome to &#039;&#039;factorio&#039;&#039;!&#039;&#039;&#039;&lt;br /&gt;
We hope you will contribute much and well.&lt;br /&gt;
You will probably want to read the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents help pages].&lt;br /&gt;
Again, welcome and have fun! [[User:Kovarex|Kovarex]] ([[User talk:Kovarex|talk]]) 21:26, 25 April 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>Kovarex</name></author>
	</entry>
	<entry>
		<id>https://wiki.factorio.com/index.php?title=User:Arcien&amp;diff=124739</id>
		<title>User:Arcien</title>
		<link rel="alternate" type="text/html" href="https://wiki.factorio.com/index.php?title=User:Arcien&amp;diff=124739"/>
		<updated>2016-04-25T21:26:37Z</updated>

		<summary type="html">&lt;p&gt;Kovarex: Creating user page for new user.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Software Engineer by day, musician and puzzler by evening, Fun Engineer by night.&lt;/div&gt;</summary>
		<author><name>Kovarex</name></author>
	</entry>
	<entry>
		<id>https://wiki.factorio.com/index.php?title=User_talk:Siku2&amp;diff=124738</id>
		<title>User talk:Siku2</title>
		<link rel="alternate" type="text/html" href="https://wiki.factorio.com/index.php?title=User_talk:Siku2&amp;diff=124738"/>
		<updated>2016-04-25T21:26:31Z</updated>

		<summary type="html">&lt;p&gt;Kovarex: Welcome!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Welcome to &#039;&#039;factorio&#039;&#039;!&#039;&#039;&#039;&lt;br /&gt;
We hope you will contribute much and well.&lt;br /&gt;
You will probably want to read the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents help pages].&lt;br /&gt;
Again, welcome and have fun! [[User:Kovarex|Kovarex]] ([[User talk:Kovarex|talk]]) 21:26, 25 April 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>Kovarex</name></author>
	</entry>
	<entry>
		<id>https://wiki.factorio.com/index.php?title=User:Siku2&amp;diff=124737</id>
		<title>User:Siku2</title>
		<link rel="alternate" type="text/html" href="https://wiki.factorio.com/index.php?title=User:Siku2&amp;diff=124737"/>
		<updated>2016-04-25T21:26:31Z</updated>

		<summary type="html">&lt;p&gt;Kovarex: Creating user page for new user.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I like playing this game but I&#039;m not very creative, thus my biography is boring. Sorry ;)&lt;/div&gt;</summary>
		<author><name>Kovarex</name></author>
	</entry>
	<entry>
		<id>https://wiki.factorio.com/index.php?title=User_talk:Faldrian&amp;diff=124736</id>
		<title>User talk:Faldrian</title>
		<link rel="alternate" type="text/html" href="https://wiki.factorio.com/index.php?title=User_talk:Faldrian&amp;diff=124736"/>
		<updated>2016-04-25T21:26:25Z</updated>

		<summary type="html">&lt;p&gt;Kovarex: Welcome!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Welcome to &#039;&#039;factorio&#039;&#039;!&#039;&#039;&#039;&lt;br /&gt;
We hope you will contribute much and well.&lt;br /&gt;
You will probably want to read the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents help pages].&lt;br /&gt;
Again, welcome and have fun! [[User:Kovarex|Kovarex]] ([[User talk:Kovarex|talk]]) 21:26, 25 April 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>Kovarex</name></author>
	</entry>
	<entry>
		<id>https://wiki.factorio.com/index.php?title=User:Faldrian&amp;diff=124735</id>
		<title>User:Faldrian</title>
		<link rel="alternate" type="text/html" href="https://wiki.factorio.com/index.php?title=User:Faldrian&amp;diff=124735"/>
		<updated>2016-04-25T21:26:25Z</updated>

		<summary type="html">&lt;p&gt;Kovarex: Creating user page for new user.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Doing in Factorio what fascinated me in Minecraft, but was to tedious to do.&lt;/div&gt;</summary>
		<author><name>Kovarex</name></author>
	</entry>
	<entry>
		<id>https://wiki.factorio.com/index.php?title=User_talk:Mpcom&amp;diff=124734</id>
		<title>User talk:Mpcom</title>
		<link rel="alternate" type="text/html" href="https://wiki.factorio.com/index.php?title=User_talk:Mpcom&amp;diff=124734"/>
		<updated>2016-04-25T21:26:19Z</updated>

		<summary type="html">&lt;p&gt;Kovarex: Welcome!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Welcome to &#039;&#039;factorio&#039;&#039;!&#039;&#039;&#039;&lt;br /&gt;
We hope you will contribute much and well.&lt;br /&gt;
You will probably want to read the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents help pages].&lt;br /&gt;
Again, welcome and have fun! [[User:Kovarex|Kovarex]] ([[User talk:Kovarex|talk]]) 21:26, 25 April 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>Kovarex</name></author>
	</entry>
	<entry>
		<id>https://wiki.factorio.com/index.php?title=User:Mpcom&amp;diff=124733</id>
		<title>User:Mpcom</title>
		<link rel="alternate" type="text/html" href="https://wiki.factorio.com/index.php?title=User:Mpcom&amp;diff=124733"/>
		<updated>2016-04-25T21:26:19Z</updated>

		<summary type="html">&lt;p&gt;Kovarex: Creating user page for new user.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;n/a&lt;br /&gt;
N/a&lt;br /&gt;
n/A&lt;br /&gt;
N/a&lt;/div&gt;</summary>
		<author><name>Kovarex</name></author>
	</entry>
	<entry>
		<id>https://wiki.factorio.com/index.php?title=User_talk:Artorp&amp;diff=124732</id>
		<title>User talk:Artorp</title>
		<link rel="alternate" type="text/html" href="https://wiki.factorio.com/index.php?title=User_talk:Artorp&amp;diff=124732"/>
		<updated>2016-04-25T21:26:13Z</updated>

		<summary type="html">&lt;p&gt;Kovarex: Welcome!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Welcome to &#039;&#039;factorio&#039;&#039;!&#039;&#039;&#039;&lt;br /&gt;
We hope you will contribute much and well.&lt;br /&gt;
You will probably want to read the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents help pages].&lt;br /&gt;
Again, welcome and have fun! [[User:Kovarex|Kovarex]] ([[User talk:Kovarex|talk]]) 21:26, 25 April 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>Kovarex</name></author>
	</entry>
	<entry>
		<id>https://wiki.factorio.com/index.php?title=User:Artorp&amp;diff=124731</id>
		<title>User:Artorp</title>
		<link rel="alternate" type="text/html" href="https://wiki.factorio.com/index.php?title=User:Artorp&amp;diff=124731"/>
		<updated>2016-04-25T21:26:13Z</updated>

		<summary type="html">&lt;p&gt;Kovarex: Creating user page for new user.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I like to play Factorio. Feel free to contact me through my &amp;quot;talk&amp;quot; page.&lt;/div&gt;</summary>
		<author><name>Kovarex</name></author>
	</entry>
	<entry>
		<id>https://wiki.factorio.com/index.php?title=User_talk:ShadowIncarnate&amp;diff=124730</id>
		<title>User talk:ShadowIncarnate</title>
		<link rel="alternate" type="text/html" href="https://wiki.factorio.com/index.php?title=User_talk:ShadowIncarnate&amp;diff=124730"/>
		<updated>2016-04-25T21:26:08Z</updated>

		<summary type="html">&lt;p&gt;Kovarex: Welcome!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Welcome to &#039;&#039;factorio&#039;&#039;!&#039;&#039;&#039;&lt;br /&gt;
We hope you will contribute much and well.&lt;br /&gt;
You will probably want to read the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents help pages].&lt;br /&gt;
Again, welcome and have fun! [[User:Kovarex|Kovarex]] ([[User talk:Kovarex|talk]]) 21:26, 25 April 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>Kovarex</name></author>
	</entry>
</feed>