<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Levelator 3.3</title>
	<atom:link href="http://fizzwidget.com/2009/12/08/gfw-levelator-3-3/feed/" rel="self" type="application/rss+xml" />
	<link>http://fizzwidget.com/2009/12/08/gfw-levelator-3-3/</link>
	<description>Superior Gadget &#38; Doodad Emporium</description>
	<lastBuildDate>Thu, 01 Jul 2010 01:08:45 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Gazmik Fizzwidget</title>
		<link>http://fizzwidget.com/2009/12/08/gfw-levelator-3-3/comment-page-1/#comment-10172</link>
		<dc:creator>Gazmik Fizzwidget</dc:creator>
		<pubDate>Tue, 06 Apr 2010 06:30:42 +0000</pubDate>
		<guid isPermaLink="false">http://fizzwidget.com/?p=355#comment-10172</guid>
		<description>&lt;p&gt;Sorry, I&#039;ve been a bit overworked lately and unable to deal with this issue quickly. Thanks Xod and others for trying to help with the problem (actually, it wasn&#039;t that the API was returning for nonexistent quests, but that it now returns more data fields than before). Levelator 3.3.1 is now available with a complete fix.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Sorry, I&#8217;ve been a bit overworked lately and unable to deal with this issue quickly. Thanks Xod and others for trying to help with the problem (actually, it wasn&#8217;t that the API was returning for nonexistent quests, but that it now returns more data fields than before). Levelator 3.3.1 is now available with a complete fix.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: BethanyAnne</title>
		<link>http://fizzwidget.com/2009/12/08/gfw-levelator-3-3/comment-page-1/#comment-10171</link>
		<dc:creator>BethanyAnne</dc:creator>
		<pubDate>Mon, 05 Apr 2010 06:11:33 +0000</pubDate>
		<guid isPermaLink="false">http://fizzwidget.com/?p=355#comment-10171</guid>
		<description>&lt;p&gt;Yea, I get basically the same error.  Not the list of addons, of course, but the actual error.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Yea, I get basically the same error.  Not the list of addons, of course, but the actual error.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Xod</title>
		<link>http://fizzwidget.com/2009/12/08/gfw-levelator-3-3/comment-page-1/#comment-10170</link>
		<dc:creator>Xod</dc:creator>
		<pubDate>Wed, 31 Mar 2010 21:15:13 +0000</pubDate>
		<guid isPermaLink="false">http://fizzwidget.com/?p=355#comment-10170</guid>
		<description>&lt;p&gt;Hmm, failed at that last part.  Here&#039;s another try at what it should look like.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;function FLV_UpdateGossipQuests(...)
        for i = 1, select(&quot;#&quot;, ...), 3 do
                local button = getglobal(&quot;GossipTitleButton&quot;..FLV_ButtonIndex);
                if (not button:IsShown()) then return end;
                if ( select(i+2, ...) ) then
&lt;/code&gt;&lt;/pre&gt;
</description>
		<content:encoded><![CDATA[<p>Hmm, failed at that last part.  Here&#8217;s another try at what it should look like.</p>

<pre><code>function FLV_UpdateGossipQuests(...)
        for i = 1, select("#", ...), 3 do
                local button = getglobal("GossipTitleButton"..FLV_ButtonIndex);
                if (not button:IsShown()) then return end;
                if ( select(i+2, ...) ) then
</code></pre>]]></content:encoded>
	</item>
	<item>
		<title>By: Xod</title>
		<link>http://fizzwidget.com/2009/12/08/gfw-levelator-3-3/comment-page-1/#comment-10169</link>
		<dc:creator>Xod</dc:creator>
		<pubDate>Wed, 31 Mar 2010 21:14:02 +0000</pubDate>
		<guid isPermaLink="false">http://fizzwidget.com/?p=355#comment-10169</guid>
		<description>&lt;p&gt;The problem is that the game is also returning unshown quests with the GetGossipAvailableQuests() call and they have &quot;nil&quot; for the level.&lt;/p&gt;

&lt;p&gt;One possible fix that I have tested is to add the following line above line 41 of Levelator.lua:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;            if (not button:IsShown()) then return end;
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Afterwards it should look like this:&lt;/p&gt;

&lt;p&gt;function FLV_UpdateGossipQuests(...)
        for i = 1, select(&quot;#&quot;, ...), 3 do
                local button = getglobal(&quot;GossipTitleButton&quot;..FLV_ButtonIndex);
                if (not button:IsShown()) then return end;
                if ( select(i+2, ...) ) then&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>The problem is that the game is also returning unshown quests with the GetGossipAvailableQuests() call and they have &#8220;nil&#8221; for the level.</p>

<p>One possible fix that I have tested is to add the following line above line 41 of Levelator.lua:</p>

<pre><code>            if (not button:IsShown()) then return end;
</code></pre>

<p>Afterwards it should look like this:</p>

<p>function FLV_UpdateGossipQuests(&#8230;)
        for i = 1, select(&#8220;#&#8221;, &#8230;), 3 do
                local button = getglobal(&#8220;GossipTitleButton&#8221;..FLV_ButtonIndex);
                if (not button:IsShown()) then return end;
                if ( select(i+2, &#8230;) ) then</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Jordicus</title>
		<link>http://fizzwidget.com/2009/12/08/gfw-levelator-3-3/comment-page-1/#comment-10168</link>
		<dc:creator>Jordicus</dc:creator>
		<pubDate>Mon, 29 Mar 2010 11:28:03 +0000</pubDate>
		<guid isPermaLink="false">http://fizzwidget.com/?p=355#comment-10168</guid>
		<description>&lt;p&gt;i have posted a quick kludge fix for 3.3.3 on wowinterface.   http://www.wowinterface.com/downloads/info16314.html&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>i have posted a quick kludge fix for 3.3.3 on wowinterface.   <a href="http://www.wowinterface.com/downloads/info16314.html" rel="nofollow">http://www.wowinterface.com/downloads/info16314.html</a></p>]]></content:encoded>
	</item>
	<item>
		<title>By: Bronzeburn</title>
		<link>http://fizzwidget.com/2009/12/08/gfw-levelator-3-3/comment-page-1/#comment-10167</link>
		<dc:creator>Bronzeburn</dc:creator>
		<pubDate>Sun, 28 Mar 2010 18:35:58 +0000</pubDate>
		<guid isPermaLink="false">http://fizzwidget.com/?p=355#comment-10167</guid>
		<description>&lt;p&gt;Get the same. Something broke in when going from 3.3.2 to 3.3.3&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Get the same. Something broke in when going from 3.3.2 to 3.3.3</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Brad Morgan</title>
		<link>http://fizzwidget.com/2009/12/08/gfw-levelator-3-3/comment-page-1/#comment-10166</link>
		<dc:creator>Brad Morgan</dc:creator>
		<pubDate>Sat, 27 Mar 2010 19:13:23 +0000</pubDate>
		<guid isPermaLink="false">http://fizzwidget.com/?p=355#comment-10166</guid>
		<description>&lt;p&gt;I get the following error when turning in a quest where the NPC has multiple quests to be turned in.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;Date: 2010-03-27 13:07:23
ID: -1
Error occured in: Global
Count: 2
Message: ..&#92;AddOns&#92;GFW_Levelator&#92;Levelator.lua line 44:
   bad argument #2 to &#039;SetFormattedText&#039; (number expected, got nil)
Debug:
   (tail call): ?
   (tail call): ?
   GFW_Levelator&#92;Levelator.lua:44: FLV_UpdateGossipQuests()
   GFW_Levelator&#92;Levelator.lua:12:
      GFW_Levelator&#92;Levelator.lua:5
AddOns:
  [ snipped for page readability -Gazmik ]
&lt;/code&gt;&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I get the following error when turning in a quest where the NPC has multiple quests to be turned in.</p>

<p><code>Date: 2010-03-27 13:07:23
ID: -1
Error occured in: Global
Count: 2
Message: ..&#92;AddOns&#92;GFW_Levelator&#92;Levelator.lua line 44:
   bad argument #2 to 'SetFormattedText' (number expected, got nil)
Debug:
   (tail call): ?
   (tail call): ?
   GFW_Levelator&#92;Levelator.lua:44: FLV_UpdateGossipQuests()
   GFW_Levelator&#92;Levelator.lua:12:
      GFW_Levelator&#92;Levelator.lua:5
AddOns:
  [ snipped for page readability -Gazmik ]
</code></p>]]></content:encoded>
	</item>
	<item>
		<title>By: Rick</title>
		<link>http://fizzwidget.com/2009/12/08/gfw-levelator-3-3/comment-page-1/#comment-10165</link>
		<dc:creator>Rick</dc:creator>
		<pubDate>Sat, 27 Mar 2010 03:33:42 +0000</pubDate>
		<guid isPermaLink="false">http://fizzwidget.com/?p=355#comment-10165</guid>
		<description>&lt;p&gt;Will there be a new version for patch 3.3.3? The current release is throwing an error whenever I talk with a quest giver that has more than one quest.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Will there be a new version for patch 3.3.3? The current release is throwing an error whenever I talk with a quest giver that has more than one quest.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Arinbjörn</title>
		<link>http://fizzwidget.com/2009/12/08/gfw-levelator-3-3/comment-page-1/#comment-10162</link>
		<dc:creator>Arinbjörn</dc:creator>
		<pubDate>Fri, 26 Mar 2010 09:04:18 +0000</pubDate>
		<guid isPermaLink="false">http://fizzwidget.com/?p=355#comment-10162</guid>
		<description>&lt;p&gt;Getting the following error in Levelator:&lt;/p&gt;

&lt;p&gt;Date: 2010-03-26 09:01:36
ID: 2
Error occured in: Global
Count: 1
Message: ..&#92;AddOns&#92;GFW_Levelator&#92;Levelator.lua line 44:
   bad argument #2 to &#039;SetFormattedText&#039; (number expected, got nil)
Debug:
   (tail call): ?
   GFW_Levelator&#92;Levelator.lua:44: FLV_UpdateGossipQuests()
   GFW_Levelator&#92;Levelator.lua:8:
      GFW_Levelator&#92;Levelator.lua:5&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Getting the following error in Levelator:</p>

<p>Date: 2010-03-26 09:01:36
ID: 2
Error occured in: Global
Count: 1
Message: ..&#92;AddOns&#92;GFW_Levelator&#92;Levelator.lua line 44:
   bad argument #2 to &#8216;SetFormattedText&#8217; (number expected, got nil)
Debug:
   (tail call): ?
   GFW_Levelator&#92;Levelator.lua:44: FLV_UpdateGossipQuests()
   GFW_Levelator&#92;Levelator.lua:8:
      GFW_Levelator&#92;Levelator.lua:5</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Onomatapia</title>
		<link>http://fizzwidget.com/2009/12/08/gfw-levelator-3-3/comment-page-1/#comment-10161</link>
		<dc:creator>Onomatapia</dc:creator>
		<pubDate>Wed, 24 Mar 2010 03:02:57 +0000</pubDate>
		<guid isPermaLink="false">http://fizzwidget.com/?p=355#comment-10161</guid>
		<description>&lt;p&gt;Levelator is throwing up massive error messages now that the 3.3.3 patch has gone live.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Levelator is throwing up massive error messages now that the 3.3.3 patch has gone live.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Jordicus</title>
		<link>http://fizzwidget.com/2009/12/08/gfw-levelator-3-3/comment-page-1/#comment-10160</link>
		<dc:creator>Jordicus</dc:creator>
		<pubDate>Wed, 24 Mar 2010 01:30:10 +0000</pubDate>
		<guid isPermaLink="false">http://fizzwidget.com/?p=355#comment-10160</guid>
		<description>&lt;p&gt;error as of patch 3.3.3&lt;/p&gt;

&lt;p&gt;[&quot;message&quot;] = &quot;GFW_Levelator-3.3&#92;&#92;Levelator.lua:44: bad argument #2 to &#039;SetFormattedText&#039; (number expected, got nil)&#92;nGFW_Levelator-3.3&#92;&#92;Levelator.lua:44: in function `FLV_UpdateGossipQuests&#039;&#92;nGFW_Levelator-3.3&#92;&#92;Levelator.lua:12: in function &lt;Interface&#92;&#92;AddOns&#92;&#92;GFW_Levelator&#92;&#92;Levelator.lua:5&gt;&#92;n&#92;nLocals:&#124;r&#92;n(for index) = 4&#92;n(for limit) = 4&#92;n(for step) = 3&#92;ni = 4&#92;nbutton = GossipTitleButton2 {&#92;n 0 = &#92;n type = &#92;&quot;Active&#92;&quot;&#92;n}&#92;n&#92;n  ---&quot;,&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>error as of patch 3.3.3</p>

<p>["message"] = &#8220;GFW_Levelator-3.3&#92;&#92;Levelator.lua:44: bad argument #2 to &#8216;SetFormattedText&#8217; (number expected, got nil)&#92;nGFW_Levelator-3.3&#92;&#92;Levelator.lua:44: in function `FLV_UpdateGossipQuests&#8217;&#92;nGFW_Levelator-3.3&#92;&#92;Levelator.lua:12: in function &lt;Interface&#92;&#92;AddOns&#92;&#92;GFW_Levelator&#92;&#92;Levelator.lua:5&gt;&#92;n&#92;nLocals:|r&#92;n(for index) = 4&#92;n(for limit) = 4&#92;n(for step) = 3&#92;ni = 4&#92;nbutton = GossipTitleButton2 {&#92;n 0 = &#92;n type = &#92;&#8221;Active&#92;&#8221;&#92;n}&#92;n&#92;n  &#8212;&#8221;,</p>]]></content:encoded>
	</item>
</channel>
</rss>
