<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Discussion on ikariam alarm and overview table | Userscripts.org</title>
    <link>http://userscripts.org/scripts/show/29431</link>
    <description>Recent comments on userscript: ikariam alarm and overview table</description>
    <language>en-us</language>
    <ttl>60</ttl>
    <item>
      <title>Updates - Tavern Usage Level 18, replied by 22367rh @ Tue, 18 Nov 2008 16:18:22 -0600</title>
      <description>&lt;p&gt;Line 386&lt;/p&gt;

&lt;p&gt;Replace:
&lt;br /&gt;var tavernWineUsage = [0, 3, 5, 8, 11, 14, 17, 21, 25, 29, 33, 38, 42, 47, 52, 57, 63, 68];&lt;/p&gt;

&lt;p&gt;With:
&lt;br /&gt;var tavernWineUsage = [0, 3, 5, 8, 11, 14, 17, 21, 25, 29, 33, 38, 42, 47, 52, 57, 63, 68, 73];&lt;/p&gt;</description>
      <pubDate>Tue, 18 Nov 2008 16:18:22 -0600</pubDate>
      <guid isPermaLink="false">userscripts.org:17990:79014</guid>
      <author>22367rh</author>
      <link>http://userscripts.org/topics/17990</link>
    </item>
    <item>
      <title>Archived Comments, replied by rfu @ Mon, 03 Nov 2008 03:34:53 -0600</title>
      <description>&lt;p&gt;Will there be an update soon? with fornax's update.. also for me.. cant see army and cities table.. other having thoose troubles?&lt;/p&gt;</description>
      <pubDate>Mon, 03 Nov 2008 03:34:53 -0600</pubDate>
      <guid isPermaLink="false">userscripts.org:13167:40657</guid>
      <author>rfu</author>
      <link>http://userscripts.org/topics/13167</link>
    </item>
    <item>
      <title>Archived Comments, replied by quin @ Wed, 22 Oct 2008 18:15:01 -0500</title>
      <description>&lt;p&gt;I'd like to ask the same as epipe, if it's possible plz someone activate the tooltip!
&lt;br /&gt;By the way thx fornax for the 0.2.8 update&lt;/p&gt;</description>
      <pubDate>Wed, 22 Oct 2008 18:15:01 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:13167:40658</guid>
      <author>quin</author>
      <link>http://userscripts.org/topics/13167</link>
    </item>
    <item>
      <title>Archived Comments, replied by epipe @ Sat, 11 Oct 2008 15:20:02 -0500</title>
      <description>&lt;p&gt;Thanks for all your work, but is there any way to activate arrivinggoods tooltip?&lt;/p&gt;</description>
      <pubDate>Sat, 11 Oct 2008 15:20:02 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:13167:40659</guid>
      <author>epipe</author>
      <link>http://userscripts.org/topics/13167</link>
    </item>
    <item>
      <title>Archived Comments, replied by SocratesF @ Thu, 09 Oct 2008 09:22:16 -0500</title>
      <description>&lt;p&gt;Thanks fornax, it works again!&lt;/p&gt;</description>
      <pubDate>Thu, 09 Oct 2008 09:22:16 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:13167:40660</guid>
      <author>SocratesF</author>
      <link>http://userscripts.org/topics/13167</link>
    </item>
    <item>
      <title>Archived Comments, replied by noname!!! @ Mon, 06 Oct 2008 12:07:09 -0500</title>
      <description>&lt;p&gt;research don't work with the code below! at least all other are ok :)&lt;/p&gt;</description>
      <pubDate>Mon, 06 Oct 2008 12:07:09 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:13167:40661</guid>
      <author>noname!!!</author>
      <link>http://userscripts.org/topics/13167</link>
    </item>
    <item>
      <title>Archived Comments, replied by fornax @ Fri, 26 Sep 2008 04:24:31 -0500</title>
      <description>&lt;p&gt;replace the entire digProducedResources() function on line 907 to support v0.2.8:&lt;/p&gt;

&lt;p&gt;&lt;pre&gt;function digProducedResources(res) {
  var scripts = document.getElementsByTagName(&quot;script&quot;);
  var nScript = scripts[scripts.length - 1];
  var sCode = nScript.innerHTML;

  var aCodeLines = sCode.split(';');
  if (aCodeLines.length &amp;lt; 24)
    return;
  var sWood = aCodeLines[24].substring(aCodeLines[24].indexOf('(')+2,aCodeLines[24].indexOf(')')-1);
  var startResourcesDelta = /production: *([0-9.]+)/.exec(sWood);
  if (startResourcesDelta != null) {
    startResourcesDelta = parseFloat(RegExp.$1) * 3600;
  } else {
    startResourcesDelta = 0;
  }
  var sTradeGood = aCodeLines[27].substring(aCodeLines[27].indexOf('(')+2,aCodeLines[27].indexOf(')')-1);
  var startTradegoodDelta = /production: *([0-9.]+)/.exec(sTradeGood);
  if (startTradegoodDelta != null) {
    startTradegoodDelta = parseFloat(RegExp.$1) * 3600;
  } else {
    startTradegoodDelta = 0;
  }

  var sName = /valueElem: \&quot;(.*?)\&quot;/.exec(sTradeGood);
  var sTradeGoodName = sName[1];

//  var res = getCity(city_id);
  res.prodwood = startResourcesDelta;
  res.prodwine = 0;
  res.prodmarble = 0;
  res.prodglass = 0;
  res.prodsulfur = 0;
  res.prodtime = &quot;&quot;+new Date().getTime(); //a leolvasas idopontja
  if (sTradeGoodName == &quot;value_wine&quot;) {
    res.prodwine = startTradegoodDelta;
  } else if (sTradeGoodName == &quot;value_marble&quot;) {
    res.prodmarble = startTradegoodDelta;
  } else if (sTradeGoodName == &quot;value_crystal&quot;) {
    res.prodglass = startTradegoodDelta;
  } else if (sTradeGoodName == &quot;value_sulfur&quot;) {
    res.prodsulfur = startTradegoodDelta;
  }
}
&lt;/pre&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 26 Sep 2008 04:24:31 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:13167:40662</guid>
      <author>fornax</author>
      <link>http://userscripts.org/topics/13167</link>
    </item>
    <item>
      <title>Archived Comments, replied by Guido @ Wed, 24 Sep 2008 17:42:40 -0500</title>
      <description>&lt;p&gt;Any chance of getting this script updated for the ikariam v0.2.8 changes?&lt;/p&gt;</description>
      <pubDate>Wed, 24 Sep 2008 17:42:40 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:13167:40663</guid>
      <author>Guido</author>
      <link>http://userscripts.org/topics/13167</link>
    </item>
    <item>
      <title>Archived Comments, replied by lafael @ Thu, 28 Aug 2008 12:14:09 -0500</title>
      <description>&lt;p&gt;can coops fix the script as salvatore wrote??
&lt;br /&gt;cause i dont know how to edit the source
&lt;br /&gt;or can anyone tell me how can i replace the source for the tooltip (++)&lt;/p&gt;</description>
      <pubDate>Thu, 28 Aug 2008 12:14:09 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:13167:40664</guid>
      <author>lafael</author>
      <link>http://userscripts.org/topics/13167</link>
    </item>
    <item>
      <title>Archived Comments, replied by ludek michera @ Wed, 13 Aug 2008 03:53:36 -0500</title>
      <description>&lt;p&gt;What about functionality to player and cities list - show how much money one can pillage from the listed cities.. It would be very nice:)&lt;/p&gt;</description>
      <pubDate>Wed, 13 Aug 2008 03:53:36 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:13167:40665</guid>
      <author>ludek michera</author>
      <link>http://userscripts.org/topics/13167</link>
    </item>
    <item>
      <title>Archived Comments, replied by quin @ Sun, 10 Aug 2008 23:49:57 -0500</title>
      <description>&lt;p&gt;Salvatore:
&lt;br /&gt;thx a lot, now it's working fine again!&lt;/p&gt;</description>
      <pubDate>Sun, 10 Aug 2008 23:49:57 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:13167:40666</guid>
      <author>quin</author>
      <link>http://userscripts.org/topics/13167</link>
    </item>
    <item>
      <title>Archived Comments, replied by Salvatore @ Sun, 10 Aug 2008 11:41:49 -0500</title>
      <description>Hi, for the Tooltip (++) try replacing
&lt;br /&gt;&lt;br /&gt;&lt;code&gt;
} else {&lt;br /&gt;
  if (/view=merchantNavy/.test(document.URL)) {&lt;br /&gt;
    config[&quot;arrivinggoods&quot;] = new Object();&lt;br /&gt;
    var cities = {};&lt;br /&gt;
    var res = xpath(&quot;//select[@id='citySelect']/option&quot;);&lt;br /&gt;
    for(var i = 0; i &amp;lt; res.snapshotLength; i++) {&lt;br /&gt;
      var n = res.snapshotItem(i);&lt;br /&gt;
      cities[n.value] = Trim(n.innerHTML);&lt;br /&gt;
    }&lt;br /&gt;
    var res = xpath(&quot;//table[@class='table01']/tbody/tr/td/br&quot;);&lt;br /&gt;
    for(var i = 0; i &amp;lt; res.snapshotLength; i++) {&lt;br /&gt;
      var n = res.snapshotItem(i).parentNode;&lt;br /&gt;
      var cel = n.innerHTML.replace(/&lt;br /&gt;.*/, &quot;&quot;);&lt;br /&gt;
&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;
with
&lt;br /&gt;&lt;br /&gt;&lt;code&gt;

}&lt;br /&gt;
{&lt;br /&gt;
  if (/view=merchantNavy/.test(document.URL)) {&lt;br /&gt;
    config[&quot;arrivinggoods&quot;] = new Object();&lt;br /&gt;
    var cities = {};&lt;br /&gt;
    var res = xpath(&quot;//select[@id='citySelect']/option&quot;);&lt;br /&gt;

    for(var i = 0; i &amp;lt; res.snapshotLength; i++) {&lt;br /&gt;
      var n = res.snapshotItem(i);&lt;br /&gt;
      cities[n.value] = Trim(n.innerHTML);&lt;br /&gt;
    }&lt;br /&gt;
    var res = xpath(&quot;//table[@class='table01']/tbody/tr&quot;);&lt;br /&gt;
    for(var i = 0; i &amp;lt; res.snapshotLength; i++) {&lt;br /&gt;
      var n = res.snapshotItem(i).childNodes[1];&lt;br /&gt;
      n = getNextNode(n);&lt;br /&gt;
      var cel = Trim(n.innerHTML.replace(/&lt;br /&gt;.*/, &quot;&quot;));&lt;br /&gt;
&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;
Good luck, bye!</description>
      <pubDate>Sun, 10 Aug 2008 11:41:49 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:13167:40667</guid>
      <author>Salvatore</author>
      <link>http://userscripts.org/topics/13167</link>
    </item>
    <item>
      <title>Archived Comments, replied by quin @ Thu, 07 Aug 2008 19:36:58 -0500</title>
      <description>&lt;p&gt;Since 0.2.7 there's a tooltip (++) in the resource table only for the transports. It doesn't show the resources from pillages. Is there any chance, that someone will fix it?&lt;/p&gt;</description>
      <pubDate>Thu, 07 Aug 2008 19:36:58 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:13167:40668</guid>
      <author>quin</author>
      <link>http://userscripts.org/topics/13167</link>
    </item>
    <item>
      <title>Archived Comments, replied by frechi @ Sun, 27 Jul 2008 08:37:10 -0500</title>
      <description>&lt;p&gt;need some help with this script.
&lt;br /&gt;if the x or y coordinates are smaller than 10 the script will not work correctly.
&lt;br /&gt;example:
&lt;br /&gt;09:53 will not work
&lt;br /&gt;10:53 work correctly&lt;/p&gt;

&lt;p&gt;can someone please help me to fix it?&lt;/p&gt;</description>
      <pubDate>Sun, 27 Jul 2008 08:37:10 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:13167:40669</guid>
      <author>frechi</author>
      <link>http://userscripts.org/topics/13167</link>
    </item>
    <item>
      <title>Archived Comments, replied by QuarkCZ @ Wed, 23 Jul 2008 12:32:08 -0500</title>
      <description>&lt;p&gt;2 Murphy: OK, helped - moved before all other scripts, coordinates turned on and now it works fine :-D
&lt;br /&gt;THX A LOT! I love this script and can't play without it :-D&lt;/p&gt;</description>
      <pubDate>Wed, 23 Jul 2008 12:32:08 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:13167:40670</guid>
      <author>QuarkCZ</author>
      <link>http://userscripts.org/topics/13167</link>
    </item>
    <item>
      <title>Archived Comments, replied by HappySpleen @ Fri, 18 Jul 2008 22:44:29 -0500</title>
      <description>&lt;p&gt;This script works great and was just about what I was looking for.
&lt;br /&gt;There is one thing I would like to see added and that is a table for your trade ships. (Where there going, how soon they will get there, ect., ect.)&lt;/p&gt;

&lt;p&gt;**Edit: I just saw the ++ next to resources that had incoming trade ships but I would like to see a count down similar to the current building timer.&lt;/p&gt;</description>
      <pubDate>Fri, 18 Jul 2008 22:44:29 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:13167:40671</guid>
      <author>HappySpleen</author>
      <link>http://userscripts.org/topics/13167</link>
    </item>
    <item>
      <title>Archived Comments, replied by Murphy @ Thu, 17 Jul 2008 15:36:13 -0500</title>
      <description>&lt;p&gt;2 QuarkCZ: But this is working with 0.2.6! If you don't see building data, you must go to your Ikariam account settings and there you must change display options for drop down menu (with towns' names) to see towns' coordinates. Then you must click on &quot;Show all settings&quot; and then &quot;Reset all data&quot; (or reinstall whole script with deletion of user data ;&#8211;)&lt;/p&gt;</description>
      <pubDate>Thu, 17 Jul 2008 15:36:13 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:13167:40672</guid>
      <author>Murphy</author>
      <link>http://userscripts.org/topics/13167</link>
    </item>
    <item>
      <title>Archived Comments, replied by QuarkCZ @ Wed, 16 Jul 2008 13:00:14 -0500</title>
      <description>&lt;p&gt;Unfortunatelly doesn't work with 0.2.6 version - could someone please update this great and essential to work with 0.2.6?&lt;/p&gt;</description>
      <pubDate>Wed, 16 Jul 2008 13:00:14 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:13167:40673</guid>
      <author>QuarkCZ</author>
      <link>http://userscripts.org/topics/13167</link>
    </item>
    <item>
      <title>Archived Comments, replied by Abu-Azzam @ Wed, 09 Jul 2008 18:16:15 -0500</title>
      <description>&lt;p&gt;I uninstalled it. Completely messed up!!!&lt;/p&gt;</description>
      <pubDate>Wed, 09 Jul 2008 18:16:15 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:13167:40674</guid>
      <author>Abu-Azzam</author>
      <link>http://userscripts.org/topics/13167</link>
    </item>
    <item>
      <title>Archived Comments, replied by mrFiX @ Wed, 09 Jul 2008 14:21:30 -0500</title>
      <description>&lt;p&gt;Melhior:
&lt;br /&gt;&#1071; &#1073;&#1099; &#1090;&#1072;&#1082; &#1080; &#1089;&#1076;&#1077;&#1083;&#1072;&#1083;. &#1071; &#1101;&#1090;&#1086;&#1090; &#1073;&#1083;&#1086;&#1082; &#1085;&#1072;&#1096;&#1077;&#1083;. &#1053;&#1086; &#1090;&#1072;&#1084; &#1087;&#1086; &#1080;&#1076;&#1077;&#1077; &#1076;&#1086;&#1083;&#1078;&#1077;&#1085; &#1078;&#1077; &#1073;&#1099;&#1090; UTF-8 ?
&lt;br /&gt;&#1040; &#1090;&#1077;&#1082;&#1089;&#1090; &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1081; &#1073;&#1099;&#1083; &#1074; &#1089;&#1090;&#1072;&#1088;&#1086;&#1084;, &#1088;&#1072;&#1073;&#1086;&#1090;&#1072;&#1102;&#1097;&#1077;&#1084; &#1089;&#1082;&#1088;&#1080;&#1087;&#1090;&#1077; &#1091; &#1084;&#1077;&#1085;&#1103; &#1085;&#1080; &#1086;&#1076;&#1080;&#1085; &#1080;&#1079; &#1080;&#1084;&#1077;&#1102;&#1097;&#1080;&#1093;&#1089;&#1103; &#1088;&#1077;&#1076;&#1072;&#1082;&#1090;&#1086;&#1088;&#1086;&#1074; &#1085;&#1077; &#1087;&#1086;&#1082;&#1072;&#1079;&#1099;&#1074;&#1072;&#1077;&#1090; &#1087;&#1086; &#1088;&#1091;&#1089;&#1089;&#1082;&#1080; &#1082;&#1086;&#1088;&#1088;&#1077;&#1082;&#1090;&#1085;&#1086;.
&lt;br /&gt;&#1042;&#1086;&#1090; &#1080; &#1076;&#1091;&#1084;&#1072;&#1083;, &#1095;&#1090;&#1086; &#1073;&#1091;&#1076;&#1091;&#1090; &#1090;&#1077;&#1078;&#1077; &#1089;&#1072;&#1084;&#1099;&#1077; &#1079;&#1085;&#1072;&#1082;&#1080; &#1074;&#1086;&#1087;&#1088;&#1086;&#1089;&#1072;, &#1077;&#1089;&#1083;&#1080; &#1088;&#1077;&#1076;&#1072;&#1082;&#1090;&#1086;&#1088; (&#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1081; &#1077;&#1089;&#1090;&#1100; &#1091; &#1084;&#1077;&#1085;&#1103;) &#1085;&#1077; &#1091;&#1084;&#1077;&#1077;&#1090; &#1089; &#1101;&#1090;&#1086;&#1081; &#1082;&#1086;&#1076;&#1080;&#1088;&#1086;&#1074;&#1082;&#1086;&#1081; &#1088;&#1072;&#1073;&#1086;&#1090;&#1072;&#1090;&#1100;.&lt;/p&gt;

&lt;p&gt;P.S.&gt; &#1057;&#1082;&#1086;&#1087;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1085;&#1099;&#1081; &#1090;&#1074;&#1086;&#1081; &#1090;&#1077;&#1082;&#1089;&#1090; &#1093;&#1086;&#1088;&#1086;&#1096;&#1086; &#1074;&#1099;&#1089;&#1090;&#1072;&#1074;&#1080;&#1083;&#1089;&#1103; (&#1076;&#1077;&#1081;&#1089;&#1090;&#1074;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086; &#1041;&#1083;&#1086;&#1082;&#1085;&#1086;&#1090; &#1089;&#1088;&#1072;&#1073;&#1086;&#1090;&#1072;&#1083;).  &#1057;&#1087;&#1072;&#1089;&#1080;&#1073;&#1086;.
&lt;br /&gt;&#1042;&#1086;&#1090; &#1073;&#1099; &#1077;&#1097;&#1077;  &#1080; &#1082;&#1086;&#1084;&#1084;&#1077;&#1085;&#1090;&#1072;&#1088;&#1080;&#1080; &#1074; &#1089;&#1082;&#1088;&#1080;&#1087;&#1090;&#1077; &#1087;&#1077;&#1088;&#1077;&#1074;&#1077;&#1089;&#1090;&#1080;, &#1084;&#1086;&#1078;&#1077;&#1090; &#1073;&#1099;&#1090;&#1100; &#1087;&#1086;&#1085;&#1103;&#1090;&#1085;&#1077;&#1081; &#1089;&#1090;&#1072;&#1083;&#1086; &#1073;&#1099; &#1082;&#1072;&#1082; &#1086;&#1085; &#1088;&#1072;&#1073;&#1086;&#1090;&#1072;&#1077;&#1090; ;-)&lt;/p&gt;</description>
      <pubDate>Wed, 09 Jul 2008 14:21:30 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:13167:40675</guid>
      <author>mrFiX</author>
      <link>http://userscripts.org/topics/13167</link>
    </item>
    <item>
      <title>Archived Comments, replied by Murphy @ Wed, 09 Jul 2008 14:11:27 -0500</title>
      <description>&lt;p&gt;2 scorpio_x73: If you don't see building data, you must go to your Ikariam account settings and there you must change display options for drop down menu (with towns' names) to see towns' coordinates. Then you must click on &quot;Show all settings&quot; and then &quot;Reset all data&quot; (or reinstall whole script with deletion of user data) - it solve your population problem as well ;&#8211;)&lt;/p&gt;</description>
      <pubDate>Wed, 09 Jul 2008 14:11:27 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:13167:40676</guid>
      <author>Murphy</author>
      <link>http://userscripts.org/topics/13167</link>
    </item>
    <item>
      <title>Archived Comments, replied by Blackkflyer @ Wed, 09 Jul 2008 11:51:26 -0500</title>
      <description>&lt;p&gt;Danish&lt;/p&gt;

&lt;p&gt;} else if (language == &quot;dk&quot;) { //by Blackkflyer
&lt;br /&gt;buildings = {
&lt;br /&gt;&quot;townHall&quot; : [&quot;R&#229;dhus&quot;, &quot;R&#229;dhus&quot;],
&lt;br /&gt;&quot;academy&quot; : [&quot;Akademi&quot;, &quot;Akademi&quot;],
&lt;br /&gt;&quot;port&quot; : [&quot;Handels havn&quot;, &quot;Handels havn&quot;],
&lt;br /&gt;&quot;shipyard&quot; : [&quot;Skibsv&#230;rft&quot;, &quot;Skibsv&#230;rft&quot;],
&lt;br /&gt;&quot;warehouse&quot; : [&quot;Lagerbygning&quot;, &quot;Lagerbygning&quot;],
&lt;br /&gt;&quot;wall&quot; : [&quot;Bymur&quot;, &quot;Bymur&quot;],
&lt;br /&gt;&quot;tavern&quot; : [&quot;V&#230;rtshus&quot;, &quot;V&#230;rtshus&quot;],
&lt;br /&gt;&quot;museum&quot; : [&quot;Museum&quot;, &quot;Museum&quot;],
&lt;br /&gt;&quot;palace&quot; : [&quot;Palads&quot;, &quot;Palads&quot;],
&lt;br /&gt;&quot;palaceColony&quot; : [&quot;Guvern&#248;rs residens&quot;, &quot;Guvern&#248;r&quot;],
&lt;br /&gt;&quot;embassy&quot; : [&quot;Ambassade&quot;, &quot;Ambassade&quot;],
&lt;br /&gt;&quot;branchOffice&quot; : [&quot;Handelsstation&quot;, &quot;Handelsstation&quot;],
&lt;br /&gt;&quot;safehouse&quot; : [&quot;Skjulested&quot;, &quot;Skjulested&quot;],
&lt;br /&gt;&quot;barracks&quot; : [&quot;Kaserne&quot;, &quot;Kaserne&quot;],
&lt;br /&gt;&quot;workshop-army&quot; : [&quot;V&#230;rksted&quot;, &quot;V&#230;rksted&quot;],
&lt;br /&gt;};
&lt;br /&gt;texts = {
&lt;br /&gt;&quot;cityName&quot;: &quot;By navn&quot;, &quot;currentlyBuilding&quot;: &quot;Bliver bygget&quot;,
&lt;br /&gt;&quot;summary&quot; : &quot;Total:&quot;, &quot;hide_settings&quot;: &quot;skjul indstillinger&quot;, &quot;show_settings&quot;: &quot;Vis indstillinger&quot;,
&lt;br /&gt;};&lt;/p&gt;</description>
      <pubDate>Wed, 09 Jul 2008 11:51:26 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:13167:40677</guid>
      <author>Blackkflyer</author>
      <link>http://userscripts.org/topics/13167</link>
    </item>
    <item>
      <title>Archived Comments, replied by scorpio_x73 @ Wed, 09 Jul 2008 10:51:12 -0500</title>
      <description>&lt;p&gt;Great script but after version v.0.2.6 it doesnt show the remaining time for contruction buildings&lt;/p&gt;

&lt;p&gt;Edit: in general the population numbers are wrong,,, seems broken to me atm.&lt;/p&gt;

&lt;p&gt;Greek server&lt;/p&gt;</description>
      <pubDate>Wed, 09 Jul 2008 10:51:12 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:13167:40678</guid>
      <author>scorpio_x73</author>
      <link>http://userscripts.org/topics/13167</link>
    </item>
    <item>
      <title>Archived Comments, replied by SocratesF @ Wed, 09 Jul 2008 09:53:12 -0500</title>
      <description>&lt;p&gt;Great script. Keep up the good work. I have made a translation in Greek language.&lt;/p&gt;

&lt;p&gt; } else if (language == &quot;gr&quot;) { //Greek translation by SocratesF
&lt;br /&gt;    buildings = {
&lt;br /&gt;      &quot;townHall&quot;      : [&quot;&#916;&#951;&#956;&#945;&#961;&#967;&#949;&#943;&#959;&quot;, &quot;&#916;&#951;&#956;&#945;&#961;&#967;&#949;&#943;&#959;&quot;],
&lt;br /&gt;      &quot;academy&quot;       : [&quot;&#913;&#954;&#945;&#948;&#951;&#956;&#943;&#945;&quot;, &quot;&#913;&#954;&#945;&#948;&#951;&#956;&#943;&#945;&quot;],
&lt;br /&gt;      &quot;port&quot;          : [&quot;&#923;&#953;&#956;&#940;&#957;&#953;&quot;, &quot;&#923;&#953;&#956;&#940;&#957;&#953;&quot;],
&lt;br /&gt;      &quot;shipyard&quot;      : [&quot;&#925;&#945;&#965;&#960;&#951;&#947;&#949;&#943;&#959;&quot;, &quot;&#925;&#945;&#965;&#960;&#951;&#947;&#949;&#943;&#959;&quot;],
&lt;br /&gt;      &quot;warehouse&quot;     : [&quot;&#913;&#960;&#959;&#952;&#942;&#954;&#951;&quot;, &quot;&#913;&#960;&#959;&#952;&#942;&#954;&#951;&quot;],
&lt;br /&gt;      &quot;wall&quot;          : [&quot;&#932;&#949;&#943;&#967;&#959;&#962;&quot;, &quot;&#932;&#949;&#943;&#967;&#959;&#962;&quot;],
&lt;br /&gt;      &quot;tavern&quot;        : [&quot;&#932;&#945;&#946;&#941;&#961;&#957;&#945;&quot;, &quot;&#932;&#945;&#946;&#941;&#961;&#957;&#945;&quot;],
&lt;br /&gt;      &quot;museum&quot;        : [&quot;&#924;&#959;&#965;&#963;&#949;&#943;&#959;&quot;, &quot;&#924;&#959;&#965;&#963;&#949;&#943;&#959;&quot;],
&lt;br /&gt;      &quot;palace&quot;        : [&quot;&#928;&#945;&#955;&#940;&#964;&#953;&quot;, &quot;&#928;&#945;&#955;&#940;&#964;&#953;&quot;],
&lt;br /&gt;      &quot;palaceColony&quot;  : [&quot;&#922;&#965;&#946;&#949;&#961;&#957;&#942;&#964;&#951;&#962;&quot;, &quot;&#922;&#965;&#946;&#949;&#961;&#957;&#942;&#964;&#951;&#962;&quot;],
&lt;br /&gt;      &quot;embassy&quot;       : [&quot;&#928;&#961;&#949;&#963;&#946;&#949;&#943;&#945;&quot;, &quot;&#928;&#961;&#949;&#963;&#946;&#949;&#943;&#945;&quot;],
&lt;br /&gt;      &quot;branchOffice&quot;  : [&quot;&#932;&#945;&#967;&#965;&#948;&#961;&#959;&#956;&#949;&#943;&#959;&quot;, &quot;&#932;&#945;&#967;&#965;&#948;&#961;&#959;&#956;&#949;&#943;&#959;&quot;],
&lt;br /&gt;      &quot;safehouse&quot;     : [&quot;&#922;&#961;&#965;&#963;&#966;&#942;&#947;&#949;&#964;&#959;&quot;, &quot;&#922;&#961;&#965;&#963;&#966;&#942;&#947;&#949;&#964;&#959;&quot;],
&lt;br /&gt;      &quot;barracks&quot;      : [&quot;&#931;&#964;&#961;&#945;&#964;&#974;&#957;&#945;&#962;&quot;, &quot;&#931;&#964;&#961;&#945;&#964;&#974;&#957;&#945;&#962;&quot;],
&lt;br /&gt;      &quot;workshop-army&quot; : [&quot;&#917;&#961;&#947;&#945;&#963;&#964;&#942;&#961;&#953;&#959;&quot;, &quot;&#917;&#961;&#947;&#945;&#963;&#964;&#942;&#961;&#953;&#959;&quot;],
&lt;br /&gt;    };
&lt;br /&gt;    texts = {
&lt;br /&gt;      &quot;cityName&quot;: &quot;&#927;&#957;&#959;&#956;&#945; &#960;&#972;&#955;&#951;&#962;&quot;, &quot;currentlyBuilding&quot;: &quot;&#933;&#960;&#972; &#954;&#945;&#964;&#945;&#963;&#954;&#949;&#965;&#942;&quot;, &quot;summary&quot;: &quot;&#931;&#973;&#957;&#959;&#955;&#959;:&quot;,
&lt;br /&gt;      &quot;hide_settings&quot;: &quot;&#913;&#960;&#972;&#954;&#961;&#965;&#968;&#951; &#961;&#965;&#952;&#956;&#943;&#963;&#949;&#969;&#957;&quot;, &quot;show_settings&quot;: &quot;&#917;&#956;&#966;&#940;&#957;&#953;&#963;&#951; &#961;&#965;&#952;&#956;&#943;&#963;&#949;&#969;&#957;&quot;,
&lt;br /&gt;    };&lt;/p&gt;</description>
      <pubDate>Wed, 09 Jul 2008 09:53:12 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:13167:40679</guid>
      <author>SocratesF</author>
      <link>http://userscripts.org/topics/13167</link>
    </item>
    <item>
      <title>Archived Comments, replied by LiFeAiR1 @ Wed, 09 Jul 2008 08:31:08 -0500</title>
      <description>&lt;p&gt;&#1101;&#1090;&#1086;&#1090; &#1089;&#1082;&#1088;&#1080;&#1087;&#1090; &#1085;&#1077; &#1086;&#1073;&#1085;&#1086;&#1074;&#1083;&#1103;&#1077;&#1090; &#1080;&#1085;&#1092;&#1086;&#1088;&#1084;&#1072;&#1094;&#1080;&#1102; &#1086; &#1074;&#1086;&#1081;&#1089;&#1082;&#1072;&#1093;((&lt;/p&gt;

&lt;p&gt;this script don't update information about military units((&lt;/p&gt;</description>
      <pubDate>Wed, 09 Jul 2008 08:31:08 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:13167:40680</guid>
      <author>LiFeAiR1</author>
      <link>http://userscripts.org/topics/13167</link>
    </item>
  </channel>
</rss>
