<?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: testing Wow ChatMOD rev. 132 for 3.1.0</title> <atom:link href="http://solariz.de/gaming/wow-chatmod-rev132.htm/feed" rel="self" type="application/rss+xml" /><link>http://solariz.de/gaming/wow-chatmod-rev132.htm</link> <description>News aus dem Bereich Spiele, Gaming, Software, Hardware und Technik - alles was einen Gamer interessiert!</description> <lastBuildDate>Tue, 09 Mar 2010 23:13:42 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <item><title>By: cowshafe</title><link>http://solariz.de/gaming/wow-chatmod-rev132.htm/comment-page-1#comment-468</link> <dc:creator>cowshafe</dc:creator> <pubDate>Wed, 02 Sep 2009 20:47:46 +0000</pubDate> <guid
isPermaLink="false">http://solariz.de/gaming/132.htm#comment-468</guid> <description>Hey i like the add on its great but for some reason now the chat bar on top won&#039;t work keeps on down the bottom? Is there a way i can have it back up the top i really miss that. Thanks again for the great addon and glad to see its been updated!  :)</description> <content:encoded><![CDATA[<p>Hey i like the add on its great but for some reason now the chat bar on top won&#8217;t work keeps on down the bottom? Is there a way i can have it back up the top i really miss that. Thanks again for the great addon and glad to see its been updated!  :)</p> ]]></content:encoded> </item> <item><title>By: Blurge</title><link>http://solariz.de/gaming/wow-chatmod-rev132.htm/comment-page-1#comment-245</link> <dc:creator>Blurge</dc:creator> <pubDate>Fri, 19 Jun 2009 10:02:56 +0000</pubDate> <guid
isPermaLink="false">http://solariz.de/gaming/132.htm#comment-245</guid> <description>Am getting problems with my Whispers with this Chatmod installed. I can send whispers but am not receiving them. Any ideas?</description> <content:encoded><![CDATA[<p>Am getting problems with my Whispers with this Chatmod installed. I can send whispers but am not receiving them. Any ideas?</p> ]]></content:encoded> </item> <item><title>By: mrbene</title><link>http://solariz.de/gaming/wow-chatmod-rev132.htm/comment-page-1#comment-187</link> <dc:creator>mrbene</dc:creator> <pubDate>Wed, 03 Jun 2009 14:20:57 +0000</pubDate> <guid
isPermaLink="false">http://solariz.de/gaming/132.htm#comment-187</guid> <description>Actually, I didn&#039;t break the invite thing.</description> <content:encoded><![CDATA[<p>Actually, I didn&#8217;t break the invite thing.</p> ]]></content:encoded> </item> <item><title>By: mrbene</title><link>http://solariz.de/gaming/wow-chatmod-rev132.htm/comment-page-1#comment-184</link> <dc:creator>mrbene</dc:creator> <pubDate>Wed, 03 Jun 2009 04:55:31 +0000</pubDate> <guid
isPermaLink="false">http://solariz.de/gaming/132.htm#comment-184</guid> <description>I actually rewrote lines 460 through 463, removing checks that are not needed and fixing behavior so that a toon name, URL, and item link can all appear on the same line with highlighting.&lt;code&gt;if text and SCCN_InChatHighlight == 1 and arg8 ~= 3 and arg8 ~= 4 and string.sub(event, 1 , 8) == &quot;CHAT_MSG&quot; and string.sub(event, 1 , 15) ~= &quot;CHAT_MSG_COMBAT&quot; then
local rWord = &quot;&quot;;
for rWord in string.gmatch(text, &quot;%w%w%w+&quot;) do
if text:find(&quot;%[[%w%s]*&quot;..rWord) == nil and rWord ~= arg2 and string.find(rWord,&quot;&#124;&quot;) == nil and string.find(rWord,&quot;^%x*$&quot;) == nil and string.find(rWord,&quot;^%a*$&quot;) ~= nil then
&lt;/code&gt;Changes are:
Searching for &quot;%w%w%w+&quot; makes the &quot;and string.len(rWord) &gt; 3&quot; redundant.
New condition &quot;text:find(&quot;%[[%w%s]*&quot;..rWord) == nil&quot; makes &quot;SCCN_URLFOUND == nil&quot; and &quot;SCCN_INVITEFOUND == nil&quot; checks redundant (I think, tho I may have broken the invite thing), as well as my &quot;text:find(&quot;%[%w+%s%w&quot;) == nil&quot;.  In addition, since this check happens inside the loop, it doesn&#039;t prevent toon name highlighting when items or URLs appear.I do think the checks after &quot;rWord ~= arg2&quot; may be redundant, but I&#039;m guessing you have put them in for a reason.</description> <content:encoded><![CDATA[<p>I actually rewrote lines 460 through 463, removing checks that are not needed and fixing behavior so that a toon name, URL, and item link can all appear on the same line with highlighting.</p><p><code>if text and SCCN_InChatHighlight == 1 and arg8 ~= 3 and arg8 ~= 4 and string.sub(event, 1 , 8) == "CHAT_MSG" and string.sub(event, 1 , 15) ~= "CHAT_MSG_COMBAT" then<br
/> local rWord = "";<br
/> for rWord in string.gmatch(text, "%w%w%w+") do<br
/> if text:find("%[[%w%s]*"..rWord) == nil and rWord ~= arg2 and string.find(rWord,"|") == nil and string.find(rWord,"^%x*$") == nil and string.find(rWord,"^%a*$") ~= nil then<br
/> </code></p><p>Changes are:<br
/> Searching for &#8220;%w%w%w+&#8221; makes the &#8220;and string.len(rWord) &gt; 3&#8243; redundant.<br
/> New condition &#8220;text:find(&#8220;%[[%w%s]*&#8221;..rWord) == nil&#8221; makes &#8220;SCCN_URLFOUND == nil&#8221; and &#8220;SCCN_INVITEFOUND == nil&#8221; checks redundant (I think, tho I may have broken the invite thing), as well as my &#8220;text:find(&#8220;%[%w+%s%w&#8221;) == nil&#8221;.  In addition, since this check happens inside the loop, it doesn&#8217;t prevent toon name highlighting when items or URLs appear.</p><p>I do think the checks after &#8220;rWord ~= arg2&#8243; may be redundant, but I&#8217;m guessing you have put them in for a reason.</p> ]]></content:encoded> </item> <item><title>By: solariz</title><link>http://solariz.de/gaming/wow-chatmod-rev132.htm/comment-page-1#comment-147</link> <dc:creator>solariz</dc:creator> <pubDate>Thu, 28 May 2009 17:50:18 +0000</pubDate> <guid
isPermaLink="false">http://solariz.de/gaming/132.htm#comment-147</guid> <description>@mrbene: ty for this I add it to the next release@Morgulo: Class color - as long as you &quot;know&quot; the char - also work on the trade channels. But As said you need to know him. To can all persons in a trade channel can cause hughe problems So I decided to leave this out.</description> <content:encoded><![CDATA[<p>@mrbene: ty for this I add it to the next release</p><p>@Morgulo: Class color &#8211; as long as you &#8220;know&#8221; the char &#8211; also work on the trade channels. But As said you need to know him. To can all persons in a trade channel can cause hughe problems So I decided to leave this out.</p> ]]></content:encoded> </item> <item><title>By: mrbene</title><link>http://solariz.de/gaming/wow-chatmod-rev132.htm/comment-page-1#comment-146</link> <dc:creator>mrbene</dc:creator> <pubDate>Thu, 28 May 2009 17:34:22 +0000</pubDate> <guid
isPermaLink="false">http://solariz.de/gaming/132.htm#comment-146</guid> <description>I&#039;ve really liked chatMOD, but found that it breaks item colorization in chat if the item has a guildee or friends name as a substring - for example, with guildee &quot;Stoic&quot; the item &quot;[Amice of the Stoic Watch]&quot; ends up as &quot;[Amice of the&quot; as purple, &quot;Stoic&quot; as class color, and &quot;Watch]&quot; as chat color.I added the following argument to line 460 in ChatMOD.lua:&lt;code&gt;and text:find(&quot;%[%w+%s%w&quot;) == nil&lt;/code&gt;This takes advantage of the fact that whitespace is not allowed in character names, but is almost always present in item names (there&#039;s a few exceptions, like &quot;Glowcap&quot;, but these have much lower incidence).This change does mean that, if an item is linked along with a toon name, that toon name will not have the highlighting.</description> <content:encoded><![CDATA[<p>I&#8217;ve really liked chatMOD, but found that it breaks item colorization in chat if the item has a guildee or friends name as a substring &#8211; for example, with guildee &#8220;Stoic&#8221; the item &#8220;[Amice of the Stoic Watch]&#8221; ends up as &#8220;[Amice of the" as purple, "Stoic" as class color, and "Watch]&#8221; as chat color.</p><p>I added the following argument to line 460 in ChatMOD.lua:</p><p><code>and text:find("%[%w+%s%w") == nil</code></p><p>This takes advantage of the fact that whitespace is not allowed in character names, but is almost always present in item names (there&#8217;s a few exceptions, like &#8220;Glowcap&#8221;, but these have much lower incidence).</p><p>This change does mean that, if an item is linked along with a toon name, that toon name will not have the highlighting.</p> ]]></content:encoded> </item> <item><title>By: Morgulo</title><link>http://solariz.de/gaming/wow-chatmod-rev132.htm/comment-page-1#comment-141</link> <dc:creator>Morgulo</dc:creator> <pubDate>Tue, 26 May 2009 13:03:53 +0000</pubDate> <guid
isPermaLink="false">http://solariz.de/gaming/132.htm#comment-141</guid> <description>Sehr nettes Addon! Nur eine Frage zum &quot;class color&quot;. Entweder es funktioniert bei mir nicht, oder werden die Klassen aus dem Handels-, SucheNachGruppe-Channel nicht ausgewertet?
Wäre es in einer nächsten Version möglich auch aus diesen Channels die Klassen auszuwerten? Oder kann man einen Lookup irgendwie forcieren?------Very nice addon! One question for the &quot;class clolor&quot;. Does class coloring not work for Trade and LFG channels? Is it possible to add this in a future version? Or is it possible to force a class lookup in any way?</description> <content:encoded><![CDATA[<p>Sehr nettes Addon! Nur eine Frage zum &#8220;class color&#8221;. Entweder es funktioniert bei mir nicht, oder werden die Klassen aus dem Handels-, SucheNachGruppe-Channel nicht ausgewertet?<br
/> Wäre es in einer nächsten Version möglich auch aus diesen Channels die Klassen auszuwerten? Oder kann man einen Lookup irgendwie forcieren?</p><p>&#8212;&#8212;</p><p>Very nice addon! One question for the &#8220;class clolor&#8221;. Does class coloring not work for Trade and LFG channels? Is it possible to add this in a future version? Or is it possible to force a class lookup in any way?</p> ]]></content:encoded> </item> <item><title>By: Paul</title><link>http://solariz.de/gaming/wow-chatmod-rev132.htm/comment-page-1#comment-80</link> <dc:creator>Paul</dc:creator> <pubDate>Sun, 10 May 2009 20:24:38 +0000</pubDate> <guid
isPermaLink="false">http://solariz.de/gaming/132.htm#comment-80</guid> <description>Hi there, can I recommend that there should be a forwarding link or at least a notification on the wow-chatmod.htm page about the most recent version:http://solariz.de/gaming/wow-chatmod.htmI actually arrived at that page first (via a search engine) and thought that the most recent update was from last year!In any case, thanks for the hard work, keep up the great job!</description> <content:encoded><![CDATA[<p>Hi there, can I recommend that there should be a forwarding link or at least a notification on the wow-chatmod.htm page about the most recent version:</p><p><a
href="http://solariz.de/gaming/wow-chatmod.htm">http://solariz.de/gaming/wow-chatmod.htm</a></p><p>I actually arrived at that page first (via a search engine) and thought that the most recent update was from last year!</p><p>In any case, thanks for the hard work, keep up the great job!</p> ]]></content:encoded> </item> <item><title>By: solariz</title><link>http://solariz.de/gaming/wow-chatmod-rev132.htm/comment-page-1#comment-58</link> <dc:creator>solariz</dc:creator> <pubDate>Sat, 02 May 2009 14:08:10 +0000</pubDate> <guid
isPermaLink="false">http://solariz.de/gaming/132.htm#comment-58</guid> <description>You can easiely remove this &quot;bug&quot; conflicting with wintertime by opening addons/chatmod/inc/ChatMOD.lua and search for &lt;b&gt;SLASH_TT1 = &quot;/wt&quot;;&lt;/b&gt; replace it with any other letters you prefer.</description> <content:encoded><![CDATA[<p>You can easiely remove this &#8220;bug&#8221; conflicting with wintertime by opening addons/chatmod/inc/ChatMOD.lua and search for <b>SLASH_TT1 = &#8220;/wt&#8221;;</b> replace it with any other letters you prefer.</p> ]]></content:encoded> </item> <item><title>By: AshTrai</title><link>http://solariz.de/gaming/wow-chatmod-rev132.htm/comment-page-1#comment-57</link> <dc:creator>AshTrai</dc:creator> <pubDate>Sat, 02 May 2009 13:17:19 +0000</pubDate> <guid
isPermaLink="false">http://solariz.de/gaming/132.htm#comment-57</guid> <description>Previous versions also do this, but... doing the command /wt (which is the trigger for the wintertime mod) it causes the following response from chatmod: ChatMOD: No target for /tt</description> <content:encoded><![CDATA[<p>Previous versions also do this, but&#8230; doing the command /wt (which is the trigger for the wintertime mod) it causes the following response from chatmod: ChatMOD: No target for /tt</p> ]]></content:encoded> </item> </channel> </rss>
<!-- This site's performance optimized by W3 Total Cache. Dramatically improve the speed and reliability of your blog!

Learn more about our WordPress Plugins: http://www.w3-edge.com/wordpress-plugins/

Minified using apc
Page Caching using apc (user agent is rejected)
Database Caching using apc
Content Delivery Network via cdn1.solariz.de

Served from: 82-149-225-196.static.aixit.com @ 2010-03-10 11:15:26 -->