<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://eota.emufarmers.com//w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Emufarmers</id>
	<title>EotAWiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://eota.emufarmers.com//w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Emufarmers"/>
	<link rel="alternate" type="text/html" href="http://eota.emufarmers.com//wiki/Special:Contributions/Emufarmers"/>
	<updated>2026-04-07T17:02:52Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.38.4</generator>
	<entry>
		<id>http://eota.emufarmers.com//w/index.php?title=User:Emufarmers/common.js&amp;diff=2790</id>
		<title>User:Emufarmers/common.js</title>
		<link rel="alternate" type="text/html" href="http://eota.emufarmers.com//w/index.php?title=User:Emufarmers/common.js&amp;diff=2790"/>
		<updated>2012-01-21T15:56:08Z</updated>

		<summary type="html">&lt;p&gt;Emufarmers: Created page with &amp;quot;/* Ajax batch delete thingy, version [0.1.1b] Originally from: http://en.wikipedia.org/wiki/User:Splarka/ajaxbatchdelete.js   Notes: * It is a bit verbose, after debugging per...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* Ajax batch delete thingy, version [0.1.1b]&lt;br /&gt;
Originally from: http://en.wikipedia.org/wiki/User:Splarka/ajaxbatchdelete.js&lt;br /&gt;
 &lt;br /&gt;
Notes:&lt;br /&gt;
* It is a bit verbose, after debugging perhaps some output should be removed.&lt;br /&gt;
* It waits 1 second after every delete before starting the next.&lt;br /&gt;
* Can be aborted by simply deleting the contents of the textarea, or leaving the page.&lt;br /&gt;
* Stops when it hits a blank line.&lt;br /&gt;
* Nonfatal errors (skip to next line):&lt;br /&gt;
** Bad character or malformed line&lt;br /&gt;
** Bad token&lt;br /&gt;
** Unexpected response&lt;br /&gt;
* Pauses in execution can be added with a blank line.&lt;br /&gt;
 &lt;br /&gt;
To do:&lt;br /&gt;
* Cache the token if two the same?&lt;br /&gt;
** Please note the delete token is not guaranteed to be static, but currently it always is.&lt;br /&gt;
*/&lt;br /&gt;
 &lt;br /&gt;
addOnloadHook(function() {&lt;br /&gt;
  addPortletLink(&#039;p-tb&#039;,&#039;/wiki/Special:BlankPage?blankspecial=ajaxbd&#039;,&#039;Batch Delete&#039;);&lt;br /&gt;
});&lt;br /&gt;
 &lt;br /&gt;
if(wgCanonicalSpecialPageName &amp;amp;&amp;amp; wgCanonicalSpecialPageName.toLowerCase() == &#039;blankpage&#039; &amp;amp;&amp;amp; queryString(&#039;blankspecial&#039;) == &#039;ajaxbd&#039;) {&lt;br /&gt;
  document.title = &#039;Ajax Batch Deletion&#039;;&lt;br /&gt;
  addOnloadHook(abdForm);&lt;br /&gt;
}&lt;br /&gt;
 &lt;br /&gt;
function abdForm() {&lt;br /&gt;
  addPortletLink(&#039;p-tb&#039;,&#039;/wiki/Special:Log/delete?user=&#039; + encodeURIComponent(wgUserName),&#039;My delete log&#039;);&lt;br /&gt;
 &lt;br /&gt;
  //subvert this Special: page to our own needs.&lt;br /&gt;
  var con = document.getElementById(&#039;content&#039;) || document.getElementById(&#039;mw_content&#039;);&lt;br /&gt;
  var bcon = document.getElementById(&#039;bodyContent&#039;) || document.getElementById(&#039;mw_contentholder&#039;);&lt;br /&gt;
  var fh = getElementsByClassName(con,&#039;h1&#039;,&#039;firstHeading&#039;)[0];&lt;br /&gt;
  while(fh.firstChild) fh.removeChild(fh.firstChild)&lt;br /&gt;
  fh.appendChild(document.createTextNode(&#039;Ajax Batch Deletion&#039;));&lt;br /&gt;
  for(var i=0;i&amp;lt;bcon.childNodes.length;i++) {&lt;br /&gt;
    bcur = bcon.childNodes[i];&lt;br /&gt;
    if(bcur.id != &#039;siteSub&#039; &amp;amp;&amp;amp; bcur.id != &#039;contentSub&#039; &amp;amp;&amp;amp; bcur.className != &#039;visualClear&#039;) {&lt;br /&gt;
      while(bcur.firstChild) bcur.removeChild(bcur.firstChild)&lt;br /&gt;
      if(bcur.nodeType == 3) bcur.nodeValue = &#039;&#039;;&lt;br /&gt;
    }&lt;br /&gt;
  }&lt;br /&gt;
 &lt;br /&gt;
  //generate content&lt;br /&gt;
  var form = document.createElement(&#039;form&#039;);&lt;br /&gt;
   form.appendChild(document.createTextNode(&#039;List of pages to delete:&#039;));&lt;br /&gt;
   form.appendChild(document.createElement(&#039;p&#039;));&lt;br /&gt;
   form.setAttribute(&#039;action&#039;,&#039;javascript:void(0);&#039;);&lt;br /&gt;
   var txt = document.createElement(&#039;textarea&#039;);&lt;br /&gt;
    txt.style.height = &#039;20em&#039;;&lt;br /&gt;
    txt.style.width = &#039;50%&#039;;&lt;br /&gt;
    txt.setAttribute(&#039;id&#039;,&#039;abd-textarea&#039;);&lt;br /&gt;
   form.appendChild(txt);&lt;br /&gt;
   form.appendChild(document.createElement(&#039;p&#039;));&lt;br /&gt;
   var lab1 = document.createElement(&#039;label&#039;);&lt;br /&gt;
    lab1.setAttribute(&#039;for&#039;,&#039;abd-reason&#039;)&lt;br /&gt;
    lab1.appendChild(document.createTextNode(&#039;Deletion reason: &#039;));&lt;br /&gt;
   form.appendChild(lab1);&lt;br /&gt;
   var inp1 = document.createElement(&#039;input&#039;);&lt;br /&gt;
    inp1.style.width = &#039;20em&#039;;&lt;br /&gt;
    inp1.setAttribute(&#039;type&#039;,&#039;text&#039;);&lt;br /&gt;
    inp1.setAttribute(&#039;id&#039;,&#039;abd-reason&#039;);&lt;br /&gt;
   form.appendChild(inp1);&lt;br /&gt;
   form.appendChild(document.createElement(&#039;p&#039;));&lt;br /&gt;
   var sub1 = document.createElement(&#039;input&#039;);&lt;br /&gt;
    sub1.setAttribute(&#039;type&#039;,&#039;button&#039;);&lt;br /&gt;
    sub1.setAttribute(&#039;id&#039;,&#039;abd-startbutton&#039;);&lt;br /&gt;
    sub1.setAttribute(&#039;value&#039;,&#039;start&#039;);&lt;br /&gt;
    sub1.setAttribute(&#039;onclick&#039;,&#039;abdStart()&#039;);&lt;br /&gt;
   form.appendChild(sub1);&lt;br /&gt;
  bcon.appendChild(form);&lt;br /&gt;
  var pre = document.createElement(&#039;pre&#039;);&lt;br /&gt;
   pre.setAttribute(&#039;id&#039;,&#039;abd-output&#039;);&lt;br /&gt;
  bcon.appendChild(pre);&lt;br /&gt;
}&lt;br /&gt;
 &lt;br /&gt;
function abdStart() {&lt;br /&gt;
  document.getElementById(&#039;abd-startbutton&#039;).setAttribute(&#039;disabled&#039;,&#039;disabled&#039;);&lt;br /&gt;
  var out = document.getElementById(&#039;abd-output&#039;);&lt;br /&gt;
  var txt = document.getElementById(&#039;abd-textarea&#039;);&lt;br /&gt;
  var deletes = txt.value.split(&#039;\n&#039;);&lt;br /&gt;
  var page = deletes[0];&lt;br /&gt;
  if(page == &#039;&#039;) {&lt;br /&gt;
    out.appendChild(document.createTextNode(&#039;* Done! Nothing left to do, or next line is blank.\n&#039;));&lt;br /&gt;
    document.getElementById(&#039;abd-startbutton&#039;).removeAttribute(&#039;disabled&#039;);&lt;br /&gt;
  } else {&lt;br /&gt;
    var badchars = /(\#|\&amp;lt;|\&amp;gt;|\[|\]|\{|\}|\|)/;&lt;br /&gt;
    if(badchars.test(page)) {&lt;br /&gt;
      out.appendChild(document.createTextNode(&#039;! Illegal characters detected, skipping:&#039; + page + &#039;\n&#039;));&lt;br /&gt;
      setTimeout(&#039;abdStart()&#039;,1000);&lt;br /&gt;
    } else {&lt;br /&gt;
      out.appendChild(document.createTextNode(&#039;&amp;gt; Attempting to delete [[&#039; + page + &#039;]]\n&#039;));&lt;br /&gt;
      abdGetToken(page);&lt;br /&gt;
    }&lt;br /&gt;
  }&lt;br /&gt;
  deletes = deletes.slice(1,deletes.length);&lt;br /&gt;
  txt.value = deletes.join(&#039;\n&#039;);&lt;br /&gt;
}&lt;br /&gt;
 &lt;br /&gt;
function abdGetToken(page) {&lt;br /&gt;
  var out = document.getElementById(&#039;abd-output&#039;);&lt;br /&gt;
  out.appendChild(document.createTextNode(&#039; &amp;gt; Fetching delete token for [[&#039; + page + &#039;]]\n&#039;));&lt;br /&gt;
  var url = wgScriptPath + &#039;/api.php?action=query&amp;amp;prop=info&amp;amp;indexpageids=1&amp;amp;intoken=delete&amp;amp;format=json&amp;amp;titles=&#039; + encodeURIComponent(page);&lt;br /&gt;
  var req = sajax_init_object();&lt;br /&gt;
  req.open(&#039;GET&#039;, url, true);&lt;br /&gt;
  req.onreadystatechange = function() {&lt;br /&gt;
    if(req.readyState == 4 &amp;amp;&amp;amp; req.status == 200) {&lt;br /&gt;
      eval(&amp;quot;abdDelete(&amp;quot; + req.responseText + &amp;quot;,&#039;&amp;quot; + req.responseText.replace(/\&#039;/g,&amp;quot;`&amp;quot;) + &amp;quot;&#039;,&#039;&amp;quot; + page + &amp;quot;&#039;)&amp;quot;);&lt;br /&gt;
    }&lt;br /&gt;
  }&lt;br /&gt;
  req.send(null);&lt;br /&gt;
}&lt;br /&gt;
 &lt;br /&gt;
function abdDelete(obj,txt,page) {&lt;br /&gt;
  var out = document.getElementById(&#039;abd-output&#039;);&lt;br /&gt;
  if(obj[&#039;error&#039;]) {&lt;br /&gt;
    out.appendChild(document.createTextNode(&#039; ! Api error: &#039; + obj[&#039;error&#039;][&#039;code&#039;] + &#039; - &#039; + obj[&#039;error&#039;][&#039;info&#039;] + &#039;\n&#039;));&lt;br /&gt;
    return;&lt;br /&gt;
  }&lt;br /&gt;
  if(!obj[&#039;query&#039;] || !obj[&#039;query&#039;][&#039;pageids&#039;] || !obj[&#039;query&#039;][&#039;pages&#039;][obj[&#039;query&#039;][&#039;pageids&#039;][0]] || !obj[&#039;query&#039;][&#039;pages&#039;][obj[&#039;query&#039;][&#039;pageids&#039;][0]][&#039;deletetoken&#039;]) {&lt;br /&gt;
    out.appendChild(document.createTextNode(&#039;  ? Unexpected response: &#039; + txt + &#039;\n&#039;));&lt;br /&gt;
    return;&lt;br /&gt;
  }&lt;br /&gt;
  var token = obj[&#039;query&#039;][&#039;pages&#039;][obj[&#039;query&#039;][&#039;pageids&#039;][0]][&#039;deletetoken&#039;];&lt;br /&gt;
  out.appendChild(document.createTextNode(&#039;  &amp;gt; Token found, attempting delete\n&#039;));&lt;br /&gt;
  var reason = document.getElementById(&#039;abd-reason&#039;).value;&lt;br /&gt;
 &lt;br /&gt;
  var params = &#039;action=delete&amp;amp;format=json&amp;amp;token=&#039; + encodeURIComponent(token) + &#039;&amp;amp;title=&#039; + encodeURIComponent(page) + &#039;&amp;amp;reason=&#039; + encodeURIComponent(reason);&lt;br /&gt;
  var url = wgScriptPath + &#039;/api.php&#039;;&lt;br /&gt;
 &lt;br /&gt;
  var req = sajax_init_object();&lt;br /&gt;
  req.open(&#039;POST&#039;, url, true);&lt;br /&gt;
  req.setRequestHeader(&#039;Content-type&#039;, &#039;application/x-www-form-urlencoded&#039;);&lt;br /&gt;
  req.setRequestHeader(&#039;Content-length&#039;, params.length);&lt;br /&gt;
  req.setRequestHeader(&#039;Connection&#039;, &#039;close&#039;);&lt;br /&gt;
  req.onreadystatechange = function() {&lt;br /&gt;
    if(req.readyState == 4 &amp;amp;&amp;amp; req.status == 200) {&lt;br /&gt;
      eval(&amp;quot;abdDeleteAftermath(&amp;quot; + req.responseText + &amp;quot;,&#039;&amp;quot; + req.responseText.replace(/\&#039;/g,&amp;quot;`&amp;quot;) + &amp;quot;&#039;)&amp;quot;);&lt;br /&gt;
    }&lt;br /&gt;
  }&lt;br /&gt;
  req.send(params);&lt;br /&gt;
}&lt;br /&gt;
 &lt;br /&gt;
function abdDeleteAftermath(obj,txt) {&lt;br /&gt;
  var out = document.getElementById(&#039;abd-output&#039;);&lt;br /&gt;
  if(obj[&#039;error&#039;]) {&lt;br /&gt;
    out.appendChild(document.createTextNode(&#039;   ! Api error: &#039; + obj[&#039;error&#039;][&#039;code&#039;] + &#039; - &#039; + obj[&#039;error&#039;][&#039;info&#039;] + &#039;\n&#039;));&lt;br /&gt;
  } else if(obj[&#039;delete&#039;] &amp;amp;&amp;amp; obj[&#039;delete&#039;][&#039;title&#039;]) {&lt;br /&gt;
    out.appendChild(document.createTextNode(&#039;   &amp;gt; Page [[&#039; + obj[&#039;delete&#039;][&#039;title&#039;] + &#039;]] deleted\n&#039;));&lt;br /&gt;
  } else {&lt;br /&gt;
    out.appendChild(document.createTextNode(&#039;   ? Unexpected response: &#039; + txt + &#039;\n&#039;));&lt;br /&gt;
    return;&lt;br /&gt;
  }&lt;br /&gt;
  setTimeout(&#039;abdStart()&#039;,1000);&lt;br /&gt;
}&lt;br /&gt;
 &lt;br /&gt;
function queryString(p) {&lt;br /&gt;
  var re = RegExp(&#039;[&amp;amp;?]&#039; + p + &#039;=([^&amp;amp;]*)&#039;);&lt;br /&gt;
  var matches;&lt;br /&gt;
  if (matches = re.exec(document.location)) {&lt;br /&gt;
    try { &lt;br /&gt;
      return decodeURI(matches[1]);&lt;br /&gt;
    } catch (e) {&lt;br /&gt;
    }&lt;br /&gt;
  }&lt;br /&gt;
  return null;&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Emufarmers</name></author>
	</entry>
	<entry>
		<id>http://eota.emufarmers.com//w/index.php?title=Map_Selection_Screen&amp;diff=2540</id>
		<title>Map Selection Screen</title>
		<link rel="alternate" type="text/html" href="http://eota.emufarmers.com//w/index.php?title=Map_Selection_Screen&amp;diff=2540"/>
		<updated>2011-09-02T21:00:47Z</updated>

		<summary type="html">&lt;p&gt;Emufarmers: Reverted edits by 94.200.27.231 (talk) to last revision by Dekar&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;From this screen there are a number of options that get selected.&lt;br /&gt;
&lt;br /&gt;
==Race Selection==&lt;br /&gt;
There are four options, high elves, creeps, undead and random pick. A race is picked for your entire team, so each game will have exactly two out of high elves, creeps or undead. Which race your team gets depends on the voting and a random chance, the team with the most votes for a given choice gets it.&lt;br /&gt;
If the game has not loaded its replacement text to the menu you need to pick the following races for those options:&lt;br /&gt;
&lt;br /&gt;
Humans -&amp;gt; High Elves (Elven Battalion)&amp;lt;br /&amp;gt;&lt;br /&gt;
Undead -&amp;gt; Undead (Grim Brigade)&amp;lt;br /&amp;gt;&lt;br /&gt;
Orcs -&amp;gt; Fel Horde &#039;&#039;&#039;!!!Only works in AP mode as of 1.12c7!!!&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Night Elves -&amp;gt; Creeps (United Creeps)&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Game Modes==&lt;br /&gt;
Random Races -&amp;gt; All Pick mode&amp;lt;br&amp;gt;&lt;br /&gt;
Random Hero -&amp;gt; All Random mode&amp;lt;br&amp;gt;&lt;br /&gt;
Hide Terrain -&amp;gt; Capture mode (not balanced)&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Emufarmers</name></author>
	</entry>
	<entry>
		<id>http://eota.emufarmers.com//w/index.php?title=Version_1.11d&amp;diff=2539</id>
		<title>Version 1.11d</title>
		<link rel="alternate" type="text/html" href="http://eota.emufarmers.com//w/index.php?title=Version_1.11d&amp;diff=2539"/>
		<updated>2011-09-02T21:00:47Z</updated>

		<summary type="html">&lt;p&gt;Emufarmers: Reverted edits by 194.83.232.2 (talk) to last revision by DarnYak&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==General==&lt;br /&gt;
*[Bugfix] Eliminated a memory leak when destroying trees.&lt;br /&gt;
*[Bugfix] Non hero units using targetted items will properly be killed&lt;br /&gt;
*[Bugfix] Limited target buffs prioritization fixed&lt;br /&gt;
*[Bugfix] Found a peristant memory leak that&#039;s been plauging me for all of EotA&#039;s existance. Should definately help in longer games, but unsure of extent.&lt;br /&gt;
*[Textfix] When the artifact becomes availible, it will now reference teir 3 outposts rather then a race specific type&lt;br /&gt;
*[Textfix] The tip about obelisks will no longer show when not on Stormwail&lt;br /&gt;
&lt;br /&gt;
==Battlefields==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===[[Candleburg]]===&lt;br /&gt;
*[Bugfix] Villagers should be far less likely to get stuck standing around for no reason&lt;br /&gt;
*Spawn timer increased to 50 seconds from 25&lt;br /&gt;
&lt;br /&gt;
==[[Heroes]]==&lt;br /&gt;
===[[Elven Battalion]]===&lt;br /&gt;
====[[Aeromancess]]====&lt;br /&gt;
*[Textfix] Tempest duration fixed&lt;br /&gt;
====[[Arcane Archer]]====&lt;br /&gt;
*[Bugfix] Meteor Swarm stuns properly again (really this time)&lt;br /&gt;
*[Textfix] Ethereal Healing shows up in -s&lt;br /&gt;
====[[Blazing Priest]]====&lt;br /&gt;
*Kindle Faith&#039;s mana cost reduced&lt;br /&gt;
*Flame of the Devout now scales down to a minimum of 25% healing as its health is reduced, increased from 0%&lt;br /&gt;
&lt;br /&gt;
====[[Divine Wizard]]====&lt;br /&gt;
*[Textfix] Vengeance shows the proper values on -s&lt;br /&gt;
*[Textfix] Empower tooltip changed to include the self only damage bonus&lt;br /&gt;
&lt;br /&gt;
====[[Mystic Swashbuckler]]====&lt;br /&gt;
*Mockery duration on heroes reduced, increased on units&lt;br /&gt;
*Dash mana cost increased&lt;br /&gt;
*Dash no longer grants invulnerbaility, instead grants 100% evasion&lt;br /&gt;
====[[Rune Knight]]====&lt;br /&gt;
*[Bugfix] Hazard Slash wasn&#039;t getting evocation bonuses&lt;br /&gt;
*[Bugfix] Siphon Glyph wasn&#039;t getting evocation bonuses&lt;br /&gt;
*[Textfix] Hazard Slash shows up in -s&lt;br /&gt;
====[[Soul Binder]]====&lt;br /&gt;
*[Bugfix] Decoy will no longer warp the hero to the middle of nowhere when cast under backlash&lt;br /&gt;
====[[Tactician]]====&lt;br /&gt;
*Flank cooldown increased to 50 seconds from 35&lt;br /&gt;
*Flank invisibility duration reduced to 30 seconds, from 40&lt;br /&gt;
*Flank speed bonus reduced by 50% across all levels&lt;br /&gt;
*Flank Skirmishers summoned reduced by 2 across all levels&lt;br /&gt;
*Skirmishers are now summoned at the rate of 1 every 2 seconds, from 3 every 4 seconds&lt;br /&gt;
*Skirmisher damage type changed to Hero from Normal&lt;br /&gt;
*Skirmisher armor reduced to 0 from 7&lt;br /&gt;
*Skirmishers that are removed while flanking due to being too far from the hero are now able to re-appear&lt;br /&gt;
*Promoted units ownership will be changed to blue or red if they aren&#039;t already&lt;br /&gt;
*[Textfix] Flank tooltip fixed&lt;br /&gt;
&lt;br /&gt;
===[[United Creeps]]===&lt;br /&gt;
====[[Acid Reaver]]====&lt;br /&gt;
*[Textfix] Storm of Malice level 4 had incorrect -armor value&lt;br /&gt;
====[[Arcane Mistress]]====&lt;br /&gt;
*[Bugfix] Wail&#039;s chance to kill was being tested twice, significantly reducing the chances of it killing&lt;br /&gt;
====[[Grim Hag]]====&lt;br /&gt;
*Swoop reworked, hitting at short range will deal the full listed damage, but longer dives increase the damage. The base damage of swoop has been reduced from its previous values.&lt;br /&gt;
====[[Master of the Hunt]]====&lt;br /&gt;
*Lunge can now target air units. Note that this is an incomplete hack before the full remake of lunge is added&lt;br /&gt;
&lt;br /&gt;
===[[Grim Brigade]]===&lt;br /&gt;
====[[Ascendant]]====&lt;br /&gt;
*Starting strength reduced to 19 from 23&lt;br /&gt;
*Starting agility increased to 15 from 13&lt;br /&gt;
*Starting intelligence increased to 17 from 15&lt;br /&gt;
*Attack range reduced to 250 from 450&lt;br /&gt;
*Ravenous Dive hold duration reduced to 1.5s-2s from 2s-3s&lt;br /&gt;
*Aberration sizes reduced, moreso at higher levels&lt;br /&gt;
*Aberration bonus health reduced&lt;br /&gt;
*Aberration when cast on summons is unable to stack, and no longer grants the bonus abilities&lt;br /&gt;
*Aberration no longer has the devotion aura graphic&lt;br /&gt;
*Hell&#039;s Fury damage area for each bolt increased to 150 from 90&lt;br /&gt;
*[Potential Bugfix] Aberration appeared to be causing occational crashes on map exit, a change has been made that may fix this&lt;br /&gt;
*[Bugfix] Aberration no longer heals units to full when the unit isn&#039;t buffed further&lt;br /&gt;
*[Textfix] Shimmer tooltip fixed&lt;br /&gt;
*[Textfix] Selection tooltip fixed&lt;br /&gt;
*[Textfix] Aberration shows up in -s&lt;br /&gt;
&lt;br /&gt;
====[[Defiler]]====&lt;br /&gt;
*Trap Corpse damage range increased to 300 from 200&lt;br /&gt;
*Pestilence cast range increased to 500 from 400&lt;br /&gt;
*Exhaustion mana cost reduced&lt;br /&gt;
*Exhaustion now has twice the chance of causing a unit to black out then a hero&lt;br /&gt;
*Exhaustion range increased to 900 from 700&lt;br /&gt;
*[Bugfix] Devouring Plague can be properly dispelled&lt;br /&gt;
&lt;br /&gt;
====[[Emberwraith]]====&lt;br /&gt;
*[Bugfix] Cauterize couldn&#039;t be cast on bridges&lt;br /&gt;
*[Textfix] Hero summary in selectin tooltip changed&lt;br /&gt;
*[Bugfix] Cauterize couldn&#039;t target invulnerable units&lt;br /&gt;
====[[Forlorn Martyr]]====&lt;br /&gt;
*[Bugfix] Ion Surge works properly on merc heroes&lt;br /&gt;
&lt;br /&gt;
====[[High Oracle]]====&lt;br /&gt;
*Befuddle mana cost reduced (primarily for lower levels)&lt;br /&gt;
*Ki Blitz channel duration changed, longer for lower levels but shorter for level 6&lt;br /&gt;
*Geyser damage increased&lt;br /&gt;
*Geyser damage to structures reduced to 5% of fall damage per second&lt;br /&gt;
&lt;br /&gt;
====[[Incarnation]]====&lt;br /&gt;
*Rend Soul area effect damage increased&lt;br /&gt;
*Remorseless damage increased slightly&lt;br /&gt;
*[Bugfix] Dark Altar no longer heals from the death of illusions&lt;br /&gt;
&lt;br /&gt;
====[[Nephilim]]====&lt;br /&gt;
*[Bugfix] Skill set switches are no longer caused by using Tiny Obelisk Tower or Tome of Power&lt;br /&gt;
*[Bugfix] Night&#039;s Eye should work properly&lt;br /&gt;
====[[Sorrow Liege]]====&lt;br /&gt;
*Royal Guard mana cost reduced&lt;br /&gt;
* Royal Guard distance to absorb damage increased to 350 from 250&lt;br /&gt;
*[Bugfix] Order Attack should work properly&lt;br /&gt;
*[Bugfix] Aura of Fatality will no longer damage wards and phased units&lt;br /&gt;
*[Bugfix] Royal Guards should now properly warp to near the hero if they go out of range&lt;br /&gt;
&lt;br /&gt;
==Units==&lt;br /&gt;
*[Bugfix] Command tower repair costs lowered to 120 from 250&lt;br /&gt;
&lt;br /&gt;
==Items==&lt;br /&gt;
*Items with restock times can no longer be resold&lt;br /&gt;
*Invisibility Potion duration reduced to 20 seconds from 120&lt;br /&gt;
*[Bugfix] Staff of Negation&#039;s dispel area now properly matches the visible size of 400&lt;br /&gt;
*[Textfix] Scroll of Teleportion now properly indicates it can target a unit&lt;br /&gt;
&lt;br /&gt;
[[Category:Versions]]&lt;/div&gt;</summary>
		<author><name>Emufarmers</name></author>
	</entry>
	<entry>
		<id>http://eota.emufarmers.com//w/index.php?title=Version_1.13b&amp;diff=2538</id>
		<title>Version 1.13b</title>
		<link rel="alternate" type="text/html" href="http://eota.emufarmers.com//w/index.php?title=Version_1.13b&amp;diff=2538"/>
		<updated>2011-09-02T21:00:45Z</updated>

		<summary type="html">&lt;p&gt;Emufarmers: Reverted edits by 208.87.54.132 (talk) to last revision by DarnYak&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Version 1.13b2=&lt;br /&gt;
Includes all changes from 1.13b&lt;br /&gt;
==General==&lt;br /&gt;
* Weather effects added&lt;br /&gt;
* [Bugfix] Sell Crystal&#039;s hotkey changed to C&lt;br /&gt;
==Battlefields==&lt;br /&gt;
*Ancient of Wonders clearly located within one team&#039;s territory are now on that team&#039;s faction (this is only because buildings needed to be shifted off Neutral Passive)&lt;br /&gt;
===[[Kedge&#039;s Landing]]===&lt;br /&gt;
*There is now a warning before a Moontear spawns&lt;br /&gt;
===[[Stormwail Peak]]===&lt;br /&gt;
*Each faction now has a Reserve Outpost on the east/west sides of the map. These outposts will not spawn until one of the team&#039;s outposts are lost, and then it will automatically send reinforcements to that lane&lt;br /&gt;
===[[Verdant Falls]]===&lt;br /&gt;
*[Bugfix] Dead heroes should no longer occationally count as being present at the fonts&lt;br /&gt;
&lt;br /&gt;
==[[Heroes]]==&lt;br /&gt;
*[Bugfix] Heroes should no longer occationally gain experience while dead&lt;br /&gt;
===[[Elven Battalion]]===&lt;br /&gt;
====[[Aeromancess]]====&lt;br /&gt;
*[Bugfix] Tempest&#039;s graphic didn&#039;t always show&lt;br /&gt;
====[[Blazing Priest]]====&lt;br /&gt;
*Flame of the Devout&lt;br /&gt;
**Mana cost reduced&lt;br /&gt;
**Now heals heroes at twice the rate as spawns&lt;br /&gt;
**Cooldown reduced to a flat 45 seconds from 50-65 seconds&lt;br /&gt;
====[[Soul Binder]]====&lt;br /&gt;
*Entrap Souls now restores (0.6 x Int) per corpse, up from (0.5 x Int)&lt;br /&gt;
*Casting Incinerate within 5 seconds reduces the mana cost by 15%&lt;br /&gt;
===[[Grim Brigade]]===&lt;br /&gt;
====[[Sorrow Liege]]====&lt;br /&gt;
*[Bugfix] Some of Forlorn Crown&#039;s effects would persist after the hero dies&lt;br /&gt;
====Combos====&lt;br /&gt;
===[[Fel Horde]]===&lt;br /&gt;
====[[Glacial Tyrant]]====&lt;br /&gt;
*[Bugfix]Sometimes Icy Barrier would persist through death&lt;br /&gt;
===[[Mercenaries]]===&lt;br /&gt;
*New faction, availble to all even non-all pick games&lt;br /&gt;
====[[Blackguard]]====&lt;br /&gt;
*Now available as a playable hero. If not picked, still available for hiring at a Tavern.&lt;br /&gt;
&lt;br /&gt;
==[[Units]]==&lt;br /&gt;
===[[Elven Battalion]]===&lt;br /&gt;
*Druid&#039;s Invigorate will (hopefully) no longer cause them to stand around like idiots chain casting it&lt;br /&gt;
===[[Fel Horde]]===&lt;br /&gt;
*Warlock&#039;s Fel Bolt is now green&lt;br /&gt;
*Annihilan&#039;s Infernal summon nerfed&lt;br /&gt;
*Grunt&#039;s Searing Blade upgrade changed due to previous one refusing to work properly&lt;br /&gt;
&lt;br /&gt;
[[Category:Versions]]&lt;/div&gt;</summary>
		<author><name>Emufarmers</name></author>
	</entry>
	<entry>
		<id>http://eota.emufarmers.com//w/index.php?title=Screenshots&amp;diff=2537</id>
		<title>Screenshots</title>
		<link rel="alternate" type="text/html" href="http://eota.emufarmers.com//w/index.php?title=Screenshots&amp;diff=2537"/>
		<updated>2011-09-02T21:00:45Z</updated>

		<summary type="html">&lt;p&gt;Emufarmers: Reverted edits by 209.164.48.181 (talk) to last revision by BenSparow&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Eve of Apocalypse&#039;s careful map design and brilliant effects ensure that the game looks as good as it plays.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery caption=&amp;quot;Stormwail&amp;quot; widths=&amp;quot;150px&amp;quot; heights=&amp;quot;75px&amp;quot; perrow=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
Image:Screenshot-Fiery_battle.png|Battle rages, wreathed in the Emberwraith&#039;s corona&lt;br /&gt;
Image:Screenshot-Rune_Knight_effects.png|With a Siphon Glyph already in play, the Rune Knight casts Grand Rune&lt;br /&gt;
Image:Screenshot-Rune_Knight_effects2.png&lt;br /&gt;
Image:Screenshot-Weather_attack_on_base.png|Backed by Flesh Golems and a weather-wielding mercenary, the Undead besiege a Human base&lt;br /&gt;
Image:Screenshot-Weather_attack_on_base2.png|&lt;br /&gt;
Image:Screenshot-Weather_attack_on_base3.png&lt;br /&gt;
Image:Screenshot-Weather_attack_on_base4.png&lt;br /&gt;
Image:Screenshot-Weather_attack_on_base5.png&lt;br /&gt;
Image:Screenshot-Brawl_in_Stormwail_middle_lane.png.png|Struck by the Defiler&#039;s disease spells, the Arcane Archer and her familiar fire upon the High Oracle&lt;br /&gt;
Image:Screenshot-Brawl_in_Stormwail_middle_lane.png2.png|The Arcane Archer continues her assault with the aid of the Divine Wizard: [http://www.research-service.com paper writers]&lt;br /&gt;
Image:Screenshot-Brawl_in_Stormwail_middle_lane.png3.png|The High Oracle casts her healing spell&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;/div&gt;</summary>
		<author><name>Emufarmers</name></author>
	</entry>
	<entry>
		<id>http://eota.emufarmers.com//w/index.php?title=Main_Page&amp;diff=2536</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://eota.emufarmers.com//w/index.php?title=Main_Page&amp;diff=2536"/>
		<updated>2011-09-02T21:00:44Z</updated>

		<summary type="html">&lt;p&gt;Emufarmers: Reverted edits by 190.90.6.34 (talk) to last revision by Dekar&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;big&amp;gt;&#039;&#039;&#039;Welcome to the Official EotAWiki&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width: 50%; float: left;&amp;quot;&amp;gt;&lt;br /&gt;
{{:Main_Page/Versions}}&lt;br /&gt;
{{:Main_Page/Levels}}&lt;br /&gt;
{{:Main_Page/Options}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width: 50%; float: right;&amp;quot;&amp;gt;&lt;br /&gt;
{{:Main_Page/Races}}&lt;br /&gt;
{{:Main_Page/Heroes}}&lt;br /&gt;
{{:Main_Page/Armies}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Emufarmers</name></author>
	</entry>
	<entry>
		<id>http://eota.emufarmers.com//w/index.php?title=Main_Page&amp;diff=2442</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://eota.emufarmers.com//w/index.php?title=Main_Page&amp;diff=2442"/>
		<updated>2010-01-25T02:10:34Z</updated>

		<summary type="html">&lt;p&gt;Emufarmers: Reverted edits by 93.87.226.161 (Talk); changed back to last version by Dekar&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;big&amp;gt;&#039;&#039;&#039;Welcome to the Official EotAWiki&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This site is under major construction so please be patient as it gets built and setup.  Thanks, Dark-Slide.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;width: 50%; float: left;&amp;quot;&amp;gt;&lt;br /&gt;
{{:Main_Page/Versions}}&lt;br /&gt;
{{:Main_Page/Levels}}&lt;br /&gt;
{{:Main_Page/Options}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width: 50%; float: right;&amp;quot;&amp;gt;&lt;br /&gt;
{{:Main_Page/Races}}&lt;br /&gt;
{{:Main_Page/Heroes}}&lt;br /&gt;
{{:Main_Page/Armies}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Emufarmers</name></author>
	</entry>
	<entry>
		<id>http://eota.emufarmers.com//w/index.php?title=File:Screenshot-Brawl_in_Stormwail_middle_lane.png.png&amp;diff=1730</id>
		<title>File:Screenshot-Brawl in Stormwail middle lane.png.png</title>
		<link rel="alternate" type="text/html" href="http://eota.emufarmers.com//w/index.php?title=File:Screenshot-Brawl_in_Stormwail_middle_lane.png.png&amp;diff=1730"/>
		<updated>2008-03-04T22:08:46Z</updated>

		<summary type="html">&lt;p&gt;Emufarmers: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Emufarmers</name></author>
	</entry>
	<entry>
		<id>http://eota.emufarmers.com//w/index.php?title=File:Screenshot-Brawl_in_Stormwail_middle_lane.png2.png&amp;diff=1729</id>
		<title>File:Screenshot-Brawl in Stormwail middle lane.png2.png</title>
		<link rel="alternate" type="text/html" href="http://eota.emufarmers.com//w/index.php?title=File:Screenshot-Brawl_in_Stormwail_middle_lane.png2.png&amp;diff=1729"/>
		<updated>2008-03-04T22:08:43Z</updated>

		<summary type="html">&lt;p&gt;Emufarmers: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Emufarmers</name></author>
	</entry>
	<entry>
		<id>http://eota.emufarmers.com//w/index.php?title=File:Screenshot-Brawl_in_Stormwail_middle_lane.png3.png&amp;diff=1728</id>
		<title>File:Screenshot-Brawl in Stormwail middle lane.png3.png</title>
		<link rel="alternate" type="text/html" href="http://eota.emufarmers.com//w/index.php?title=File:Screenshot-Brawl_in_Stormwail_middle_lane.png3.png&amp;diff=1728"/>
		<updated>2008-03-04T22:08:32Z</updated>

		<summary type="html">&lt;p&gt;Emufarmers: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Emufarmers</name></author>
	</entry>
	<entry>
		<id>http://eota.emufarmers.com//w/index.php?title=Screenshots&amp;diff=1727</id>
		<title>Screenshots</title>
		<link rel="alternate" type="text/html" href="http://eota.emufarmers.com//w/index.php?title=Screenshots&amp;diff=1727"/>
		<updated>2008-03-04T22:07:26Z</updated>

		<summary type="html">&lt;p&gt;Emufarmers: New selection: &amp;quot;Brawl in Stormwail middle lane&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Eve of Apocalypse&#039;s careful map design and brilliant effects ensure that the game looks as good as it plays.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery caption=&amp;quot;Stormwail&amp;quot; widths=&amp;quot;150px&amp;quot; heights=&amp;quot;75px&amp;quot; perrow=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
Image:Screenshot-Fiery_battle.png|Battle rages, wreathed in the Emberwraith&#039;s corona&lt;br /&gt;
Image:Screenshot-Rune_Knight_effects.png|With a Siphon Glyph already in play, the Rune Knight casts Grand Rune&lt;br /&gt;
Image:Screenshot-Rune_Knight_effects2.png&lt;br /&gt;
Image:Screenshot-Weather_attack_on_base.png|Backed by Flesh Golems and a weather-wielding mercenary, the Undead besiege a Human base&lt;br /&gt;
Image:Screenshot-Weather_attack_on_base2.png|&lt;br /&gt;
Image:Screenshot-Weather_attack_on_base3.png&lt;br /&gt;
Image:Screenshot-Weather_attack_on_base4.png&lt;br /&gt;
Image:Screenshot-Weather_attack_on_base5.png&lt;br /&gt;
Image:Screenshot-Brawl_in_Stormwail_middle_lane.png.png|Struck by the Defiler&#039;s disease spells, the Arcane Archer and her familiar fire upon the High Oracle&lt;br /&gt;
Image:Screenshot-Brawl_in_Stormwail_middle_lane.png2.png|The Arcane Archer continues her assault with the aid of the Divine Wizard&lt;br /&gt;
Image:Screenshot-Brawl_in_Stormwail_middle_lane.png3.png|The High Oracle casts her healing spell&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;/div&gt;</summary>
		<author><name>Emufarmers</name></author>
	</entry>
	<entry>
		<id>http://eota.emufarmers.com//w/index.php?title=Screenshots&amp;diff=1711</id>
		<title>Screenshots</title>
		<link rel="alternate" type="text/html" href="http://eota.emufarmers.com//w/index.php?title=Screenshots&amp;diff=1711"/>
		<updated>2008-03-02T05:54:03Z</updated>

		<summary type="html">&lt;p&gt;Emufarmers: /* Stormwail */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Eve of Apocalypse&#039;s careful map design and brilliant effects ensure that the game looks as good as it plays.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery caption=&amp;quot;Stormwail&amp;quot; widths=&amp;quot;150px&amp;quot; heights=&amp;quot;75px&amp;quot; perrow=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
Image:Screenshot-Fiery_battle.png|Battle rages, wreathed in the Emberwraith&#039;s corona&lt;br /&gt;
Image:Screenshot-Rune_Knight_effects.png|With a Siphon Glyph already in play, the Rune Knight casts Grand Rune&lt;br /&gt;
Image:Screenshot-Rune_Knight_effects2.png&lt;br /&gt;
Image:Screenshot-Weather_attack_on_base.png|Backed by Flesh Golems and a weather-wielding mercenary, the Undead besiege a Human base&lt;br /&gt;
Image:Screenshot-Weather_attack_on_base2.png|&lt;br /&gt;
Image:Screenshot-Weather_attack_on_base3.png&lt;br /&gt;
Image:Screenshot-Weather_attack_on_base4.png&lt;br /&gt;
Image:Screenshot-Weather_attack_on_base5.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;/div&gt;</summary>
		<author><name>Emufarmers</name></author>
	</entry>
	<entry>
		<id>http://eota.emufarmers.com//w/index.php?title=Screenshots&amp;diff=1710</id>
		<title>Screenshots</title>
		<link rel="alternate" type="text/html" href="http://eota.emufarmers.com//w/index.php?title=Screenshots&amp;diff=1710"/>
		<updated>2008-03-02T05:50:30Z</updated>

		<summary type="html">&lt;p&gt;Emufarmers: New page: Eve of Apocalypse&amp;#039;s careful map design and brilliant effects ensure that the game looks as good as it plays.  ==Stormwail== &amp;lt;gallery&amp;gt; Image:Screenshot-Fiery_battle.png|Battle rages, wreath...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Eve of Apocalypse&#039;s careful map design and brilliant effects ensure that the game looks as good as it plays.&lt;br /&gt;
&lt;br /&gt;
==Stormwail==&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:Screenshot-Fiery_battle.png|Battle rages, wreathed in the Emberwraith&#039;s corona&lt;br /&gt;
Image:Screenshot-Rune_Knight_effects.png|With a Siphon Glyph already in play, the Rune Knight casts Grand Rune&lt;br /&gt;
Image:Screenshot-Rune_Knight_effects2.png&lt;br /&gt;
Image:Screenshot-Weather_attack_on_base.png|Backed by Flesh Golems and a weather-wielding mercenary, the Undead besiege a Human base&lt;br /&gt;
Image:Screenshot-Weather_attack_on_base2.png|&lt;br /&gt;
Image:Screenshot-Weather_attack_on_base3.png&lt;br /&gt;
Image:Screenshot-Weather_attack_on_base4.png&lt;br /&gt;
Image:Screenshot-Weather_attack_on_base5.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;/div&gt;</summary>
		<author><name>Emufarmers</name></author>
	</entry>
	<entry>
		<id>http://eota.emufarmers.com//w/index.php?title=File:Screenshot-Rune_Knight_effects.png&amp;diff=1709</id>
		<title>File:Screenshot-Rune Knight effects.png</title>
		<link rel="alternate" type="text/html" href="http://eota.emufarmers.com//w/index.php?title=File:Screenshot-Rune_Knight_effects.png&amp;diff=1709"/>
		<updated>2008-03-02T05:42:25Z</updated>

		<summary type="html">&lt;p&gt;Emufarmers: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Emufarmers</name></author>
	</entry>
	<entry>
		<id>http://eota.emufarmers.com//w/index.php?title=File:Screenshot-Rune_Knight_effects2.png&amp;diff=1708</id>
		<title>File:Screenshot-Rune Knight effects2.png</title>
		<link rel="alternate" type="text/html" href="http://eota.emufarmers.com//w/index.php?title=File:Screenshot-Rune_Knight_effects2.png&amp;diff=1708"/>
		<updated>2008-03-02T05:42:24Z</updated>

		<summary type="html">&lt;p&gt;Emufarmers: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Emufarmers</name></author>
	</entry>
	<entry>
		<id>http://eota.emufarmers.com//w/index.php?title=File:Screenshot-Weather_attack_on_base2.png&amp;diff=1707</id>
		<title>File:Screenshot-Weather attack on base2.png</title>
		<link rel="alternate" type="text/html" href="http://eota.emufarmers.com//w/index.php?title=File:Screenshot-Weather_attack_on_base2.png&amp;diff=1707"/>
		<updated>2008-03-02T05:42:22Z</updated>

		<summary type="html">&lt;p&gt;Emufarmers: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Emufarmers</name></author>
	</entry>
	<entry>
		<id>http://eota.emufarmers.com//w/index.php?title=File:Screenshot-Weather_attack_on_base.png&amp;diff=1706</id>
		<title>File:Screenshot-Weather attack on base.png</title>
		<link rel="alternate" type="text/html" href="http://eota.emufarmers.com//w/index.php?title=File:Screenshot-Weather_attack_on_base.png&amp;diff=1706"/>
		<updated>2008-03-02T05:42:21Z</updated>

		<summary type="html">&lt;p&gt;Emufarmers: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Emufarmers</name></author>
	</entry>
	<entry>
		<id>http://eota.emufarmers.com//w/index.php?title=File:Screenshot-Weather_attack_on_base3.png&amp;diff=1705</id>
		<title>File:Screenshot-Weather attack on base3.png</title>
		<link rel="alternate" type="text/html" href="http://eota.emufarmers.com//w/index.php?title=File:Screenshot-Weather_attack_on_base3.png&amp;diff=1705"/>
		<updated>2008-03-02T05:42:18Z</updated>

		<summary type="html">&lt;p&gt;Emufarmers: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Emufarmers</name></author>
	</entry>
	<entry>
		<id>http://eota.emufarmers.com//w/index.php?title=File:Screenshot-Weather_attack_on_base4.png&amp;diff=1704</id>
		<title>File:Screenshot-Weather attack on base4.png</title>
		<link rel="alternate" type="text/html" href="http://eota.emufarmers.com//w/index.php?title=File:Screenshot-Weather_attack_on_base4.png&amp;diff=1704"/>
		<updated>2008-03-02T05:42:17Z</updated>

		<summary type="html">&lt;p&gt;Emufarmers: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Emufarmers</name></author>
	</entry>
	<entry>
		<id>http://eota.emufarmers.com//w/index.php?title=File:Screenshot-Weather_attack_on_base5.png&amp;diff=1703</id>
		<title>File:Screenshot-Weather attack on base5.png</title>
		<link rel="alternate" type="text/html" href="http://eota.emufarmers.com//w/index.php?title=File:Screenshot-Weather_attack_on_base5.png&amp;diff=1703"/>
		<updated>2008-03-02T05:42:16Z</updated>

		<summary type="html">&lt;p&gt;Emufarmers: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Emufarmers</name></author>
	</entry>
	<entry>
		<id>http://eota.emufarmers.com//w/index.php?title=File:Screenshot-Fiery_battle.png&amp;diff=1702</id>
		<title>File:Screenshot-Fiery battle.png</title>
		<link rel="alternate" type="text/html" href="http://eota.emufarmers.com//w/index.php?title=File:Screenshot-Fiery_battle.png&amp;diff=1702"/>
		<updated>2008-03-02T05:40:50Z</updated>

		<summary type="html">&lt;p&gt;Emufarmers: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Emufarmers</name></author>
	</entry>
	<entry>
		<id>http://eota.emufarmers.com//w/index.php?title=Todo&amp;diff=1353</id>
		<title>Todo</title>
		<link rel="alternate" type="text/html" href="http://eota.emufarmers.com//w/index.php?title=Todo&amp;diff=1353"/>
		<updated>2007-08-07T10:21:33Z</updated>

		<summary type="html">&lt;p&gt;Emufarmers: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is Yak&#039;s personal todo list. It probably shouldn&#039;t be a wiki page, but I don&#039;t give a damn. Please use the discussion page for anything related to this page. Bug fixes aren&#039;t included here usualy&lt;br /&gt;
&lt;br /&gt;
=For 1.11d=&lt;br /&gt;
* Buff swoop&lt;br /&gt;
* Fix Aberration&lt;br /&gt;
* Nerf Ravenous Dive&lt;/div&gt;</summary>
		<author><name>Emufarmers</name></author>
	</entry>
	<entry>
		<id>http://eota.emufarmers.com//w/index.php?title=Todo&amp;diff=1352</id>
		<title>Todo</title>
		<link rel="alternate" type="text/html" href="http://eota.emufarmers.com//w/index.php?title=Todo&amp;diff=1352"/>
		<updated>2007-08-07T10:20:57Z</updated>

		<summary type="html">&lt;p&gt;Emufarmers: Protected &amp;quot;Todo&amp;quot;: Let&amp;#039;s remove the tempation before anybody does something stupid. [edit=sysop:move=sysop]&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is Yak&#039;s personal todo list. It probably shouldn&#039;t be a wiki page, but I don&#039;t give a damn. Please use the discussion page for anything related to this page and don&#039;t fuck with the page itself (yes I can probably lock the page, but don&#039;t make me do that). Bug fixes aren&#039;t included here usualy&lt;br /&gt;
&lt;br /&gt;
=For 1.11d=&lt;br /&gt;
* Buff swoop&lt;br /&gt;
* Fix Aberration&lt;br /&gt;
* Nerf Ravenous Dive&lt;/div&gt;</summary>
		<author><name>Emufarmers</name></author>
	</entry>
	<entry>
		<id>http://eota.emufarmers.com//w/index.php?title=Help:Contents&amp;diff=1327</id>
		<title>Help:Contents</title>
		<link rel="alternate" type="text/html" href="http://eota.emufarmers.com//w/index.php?title=Help:Contents&amp;diff=1327"/>
		<updated>2007-07-22T00:55:18Z</updated>

		<summary type="html">&lt;p&gt;Emufarmers: New page: Just use Wikipedia&amp;#039;s help pages for editing help, or ask someone who looks competent.  If you need help with something in the game that you can&amp;#039;t find here, try...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Just use [[Wikipedia:Help:Contents|Wikipedia&#039;s help pages]] for editing help, or ask someone who looks competent.&lt;br /&gt;
&lt;br /&gt;
If you need help with something in the game that you can&#039;t find here, try the forums.&lt;/div&gt;</summary>
		<author><name>Emufarmers</name></author>
	</entry>
	<entry>
		<id>http://eota.emufarmers.com//w/index.php?title=MediaWiki:Sidebar&amp;diff=1326</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="http://eota.emufarmers.com//w/index.php?title=MediaWiki:Sidebar&amp;diff=1326"/>
		<updated>2007-07-22T00:51:34Z</updated>

		<summary type="html">&lt;p&gt;Emufarmers: Might as well cut out some of this stuff&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* navigation&lt;br /&gt;
** mainpage|mainpage&lt;br /&gt;
** recentchanges-url|recentchanges&lt;br /&gt;
** randompage-url|randompage&lt;br /&gt;
** helppage|help&lt;br /&gt;
&lt;br /&gt;
* main site&lt;br /&gt;
**{{SERVER}}|Home&lt;br /&gt;
**{{SERVER}}/forums/index.php|Forums&lt;/div&gt;</summary>
		<author><name>Emufarmers</name></author>
	</entry>
	<entry>
		<id>http://eota.emufarmers.com//w/index.php?title=MediaWiki:Sidebar&amp;diff=1294</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="http://eota.emufarmers.com//w/index.php?title=MediaWiki:Sidebar&amp;diff=1294"/>
		<updated>2007-07-14T07:06:46Z</updated>

		<summary type="html">&lt;p&gt;Emufarmers: Whoops&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* navigation&lt;br /&gt;
** mainpage|mainpage&lt;br /&gt;
** portal-url|portal&lt;br /&gt;
** currentevents-url|currentevents&lt;br /&gt;
** recentchanges-url|recentchanges&lt;br /&gt;
** randompage-url|randompage&lt;br /&gt;
** helppage|help&lt;br /&gt;
** sitesupport-url|sitesupport&lt;br /&gt;
&lt;br /&gt;
* main site&lt;br /&gt;
**{{SERVER}}|Home&lt;br /&gt;
**{{SERVER}}/forums/index.php|Forums&lt;/div&gt;</summary>
		<author><name>Emufarmers</name></author>
	</entry>
	<entry>
		<id>http://eota.emufarmers.com//w/index.php?title=MediaWiki:Sidebar&amp;diff=1293</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="http://eota.emufarmers.com//w/index.php?title=MediaWiki:Sidebar&amp;diff=1293"/>
		<updated>2007-07-14T07:05:22Z</updated>

		<summary type="html">&lt;p&gt;Emufarmers: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* navigation&lt;br /&gt;
** mainpage|mainpage&lt;br /&gt;
** portal-url|portal&lt;br /&gt;
** currentevents-url|currentevents&lt;br /&gt;
** recentchanges-url|recentchanges&lt;br /&gt;
** randompage-url|randompage&lt;br /&gt;
** helppage|help&lt;br /&gt;
** sitesupport-url|sitesupport&lt;br /&gt;
&lt;br /&gt;
* main site&lt;br /&gt;
**http://{{SERVER}}|Home&lt;br /&gt;
**http://{{SERVER}}/forums/index.php|Forums&lt;/div&gt;</summary>
		<author><name>Emufarmers</name></author>
	</entry>
	<entry>
		<id>http://eota.emufarmers.com//w/index.php?title=Tavern_Heroes&amp;diff=277</id>
		<title>Tavern Heroes</title>
		<link rel="alternate" type="text/html" href="http://eota.emufarmers.com//w/index.php?title=Tavern_Heroes&amp;diff=277"/>
		<updated>2007-06-29T09:47:27Z</updated>

		<summary type="html">&lt;p&gt;Emufarmers: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Below are the heroes available to all races.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Tavern Heroes are purchased and controlled by the team&#039;s computer.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;float: right;&amp;quot;&amp;gt;&lt;br /&gt;
{{Heroes Box|Tavern Heroes|Tavern Heroes}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Heroes]]&lt;/div&gt;</summary>
		<author><name>Emufarmers</name></author>
	</entry>
	<entry>
		<id>http://eota.emufarmers.com//w/index.php?title=Template:Tavern_Heros&amp;diff=276</id>
		<title>Template:Tavern Heros</title>
		<link rel="alternate" type="text/html" href="http://eota.emufarmers.com//w/index.php?title=Template:Tavern_Heros&amp;diff=276"/>
		<updated>2007-06-29T09:46:59Z</updated>

		<summary type="html">&lt;p&gt;Emufarmers: Template:Tavern Heros moved to Template:Tavern Heroes&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Template:Tavern Heroes]]&lt;/div&gt;</summary>
		<author><name>Emufarmers</name></author>
	</entry>
	<entry>
		<id>http://eota.emufarmers.com//w/index.php?title=Template:Tavern_Heroes&amp;diff=275</id>
		<title>Template:Tavern Heroes</title>
		<link rel="alternate" type="text/html" href="http://eota.emufarmers.com//w/index.php?title=Template:Tavern_Heroes&amp;diff=275"/>
		<updated>2007-06-29T09:46:59Z</updated>

		<summary type="html">&lt;p&gt;Emufarmers: Template:Tavern Heros moved to Template:Tavern Heroes&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Pandaren&#039;&#039;&#039;&amp;lt;br&amp;gt;&lt;br /&gt;
[[Earthbrother]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[Fire Knight]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[Stormweaver]]&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Dwarven&#039;&#039;&#039;&amp;lt;br&amp;gt;&lt;br /&gt;
[[Blackgaurd]]&amp;lt;br&amp;gt;&lt;br /&gt;
[[Marksman]]&lt;/div&gt;</summary>
		<author><name>Emufarmers</name></author>
	</entry>
	<entry>
		<id>http://eota.emufarmers.com//w/index.php?title=Tavern_Heros&amp;diff=274</id>
		<title>Tavern Heros</title>
		<link rel="alternate" type="text/html" href="http://eota.emufarmers.com//w/index.php?title=Tavern_Heros&amp;diff=274"/>
		<updated>2007-06-29T09:46:39Z</updated>

		<summary type="html">&lt;p&gt;Emufarmers: Tavern Heros moved to Tavern Heroes&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Tavern Heroes]]&lt;/div&gt;</summary>
		<author><name>Emufarmers</name></author>
	</entry>
	<entry>
		<id>http://eota.emufarmers.com//w/index.php?title=Tavern_Heroes&amp;diff=273</id>
		<title>Tavern Heroes</title>
		<link rel="alternate" type="text/html" href="http://eota.emufarmers.com//w/index.php?title=Tavern_Heroes&amp;diff=273"/>
		<updated>2007-06-29T09:46:39Z</updated>

		<summary type="html">&lt;p&gt;Emufarmers: Tavern Heros moved to Tavern Heroes&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Below are the heroes available to all races.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Tavern Heros are purchased and controlled by the team&#039;s computer.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;float: right;&amp;quot;&amp;gt;&lt;br /&gt;
{{Heroes Box|Tavern Heros|Tavern Heros}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Heroes]]&lt;/div&gt;</summary>
		<author><name>Emufarmers</name></author>
	</entry>
	<entry>
		<id>http://eota.emufarmers.com//w/index.php?title=Twilight_1.12&amp;diff=272</id>
		<title>Twilight 1.12</title>
		<link rel="alternate" type="text/html" href="http://eota.emufarmers.com//w/index.php?title=Twilight_1.12&amp;diff=272"/>
		<updated>2007-06-29T09:44:59Z</updated>

		<summary type="html">&lt;p&gt;Emufarmers: Redirecting to Next Version&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Next Version]]&lt;/div&gt;</summary>
		<author><name>Emufarmers</name></author>
	</entry>
</feed>