<?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: Weapon Swapping</title>
	<atom:link href="http://oneroguesjourney.com/2009/10/21/weapon-swapping/feed/" rel="self" type="application/rss+xml" />
	<link>http://oneroguesjourney.com/2009/10/21/weapon-swapping/</link>
	<description>One Rogue&#039;s Journey Through Life, but Mostly Video Games</description>
	<lastBuildDate>Thu, 12 May 2011 05:01:52 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Recked</title>
		<link>http://oneroguesjourney.com/2009/10/21/weapon-swapping/comment-page-1/#comment-915</link>
		<dc:creator>Recked</dc:creator>
		<pubDate>Wed, 11 Nov 2009 16:04:31 +0000</pubDate>
		<guid isPermaLink="false">http://oneroguesjourney.com/?p=946#comment-915</guid>
		<description>Justin mentioned an addon called &quot;poisonswapper&quot; on curse.com which does most of this for you. Worth a look perhaps?

Comment:
http://recked.wordpress.com/2009/10/30/rogue-weapon-swapping-in-raids-a-myth/#comment-46
.-= Recked&#180;s last blog ..&lt;a href=&quot;http://recked.wordpress.com/2009/11/11/rogue-news-murder-talent-update-in-patch-3-3/&quot; rel=&quot;nofollow&quot;&gt;Rogue News: Murder Talent Update in Patch 3.3&lt;/a&gt; =-.</description>
		<content:encoded><![CDATA[<p>Justin mentioned an addon called &#8220;poisonswapper&#8221; on curse.com which does most of this for you. Worth a look perhaps?</p>
<p>Comment:<br />
<a href="http://recked.wordpress.com/2009/10/30/rogue-weapon-swapping-in-raids-a-myth/#comment-46" rel="nofollow">http://recked.wordpress.com/2009/10/30/rogue-weapon-swapping-in-raids-a-myth/#comment-46</a><br />
.-= Recked&#180;s last blog ..<a href="http://recked.wordpress.com/2009/11/11/rogue-news-murder-talent-update-in-patch-3-3/" rel="nofollow">Rogue News: Murder Talent Update in Patch 3.3</a> =-.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lightfeet</title>
		<link>http://oneroguesjourney.com/2009/10/21/weapon-swapping/comment-page-1/#comment-904</link>
		<dc:creator>Lightfeet</dc:creator>
		<pubDate>Fri, 30 Oct 2009 17:24:31 +0000</pubDate>
		<guid isPermaLink="false">http://oneroguesjourney.com/?p=946#comment-904</guid>
		<description>Originally posted by Pinch of Premonition

Hit this one when you log on (initialization macro)

/run ws=CreateFrame(&quot;FRAME&quot;,&quot;WS&quot;)u=UseEquipmentSet function g()d=nil for i=1,40 do n,_,_,s,_,_,x,c=UnitDebuff(&quot;target&quot;,i)if n==&quot;Deadly Poison IX&quot; and c==&quot;player&quot; then d=(x-GetTime()&gt;5 and s==5) end end if d then u(&quot;IP&quot;) else u(&quot;DP&quot;) end end

This turns weapon swapping on/off

/run if not aso then ws:RegisterEvent(&quot;UNIT_COMBAT&quot;)ws:SetScript(&quot;OnEvent&quot;,g)DEFAULT_CHAT_FRAME:AddMessage (&quot;Autoswap On&quot;)aso=true else ws:UnregisterEvent(&quot;UNIT_COMBAT&quot;)DEFAULT_CHAT_FRAME:AddMessage(&quot;Autoswap Off&quot;)aso=nil end

You&#039;ll need 2 item sets in the blizzard itemrack, one named IP and one named DP.

For anyone that can&#039;t read the code, here is what it does:
- You target something that is in combat that doesn&#039;t have a 5 stack of your deadly poison, it swaps to the DP set
- When you hit 5 stacks of deadly poison, it&#039;ll swap to the IP set
- When DP has 5 seconds remaining, it&#039;ll swap back to the DP set
- When DP is refreshed, it&#039;ll swap back to the IP set

You have to do nothing. The only thing on your end is the annoying GCD&#039;s caused by the swaps.</description>
		<content:encoded><![CDATA[<p>Originally posted by Pinch of Premonition</p>
<p>Hit this one when you log on (initialization macro)</p>
<p>/run ws=CreateFrame(&#8220;FRAME&#8221;,&#8221;WS&#8221;)u=UseEquipmentSet function g()d=nil for i=1,40 do n,_,_,s,_,_,x,c=UnitDebuff(&#8220;target&#8221;,i)if n==&#8221;Deadly Poison IX&#8221; and c==&#8221;player&#8221; then d=(x-GetTime()&gt;5 and s==5) end end if d then u(&#8220;IP&#8221;) else u(&#8220;DP&#8221;) end end</p>
<p>This turns weapon swapping on/off</p>
<p>/run if not aso then ws:RegisterEvent(&#8220;UNIT_COMBAT&#8221;)ws:SetScript(&#8220;OnEvent&#8221;,g)DEFAULT_CHAT_FRAME:AddMessage (&#8220;Autoswap On&#8221;)aso=true else ws:UnregisterEvent(&#8220;UNIT_COMBAT&#8221;)DEFAULT_CHAT_FRAME:AddMessage(&#8220;Autoswap Off&#8221;)aso=nil end</p>
<p>You&#8217;ll need 2 item sets in the blizzard itemrack, one named IP and one named DP.</p>
<p>For anyone that can&#8217;t read the code, here is what it does:<br />
- You target something that is in combat that doesn&#8217;t have a 5 stack of your deadly poison, it swaps to the DP set<br />
- When you hit 5 stacks of deadly poison, it&#8217;ll swap to the IP set<br />
- When DP has 5 seconds remaining, it&#8217;ll swap back to the DP set<br />
- When DP is refreshed, it&#8217;ll swap back to the IP set</p>
<p>You have to do nothing. The only thing on your end is the annoying GCD&#8217;s caused by the swaps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zarnah</title>
		<link>http://oneroguesjourney.com/2009/10/21/weapon-swapping/comment-page-1/#comment-898</link>
		<dc:creator>Zarnah</dc:creator>
		<pubDate>Fri, 23 Oct 2009 22:05:28 +0000</pubDate>
		<guid isPermaLink="false">http://oneroguesjourney.com/?p=946#comment-898</guid>
		<description>Re: Cambria&#039;s post - you&#039;d just add the Wound poison to the dagger in your bag and put the name of the dagger (Webbed Death) in the place of the [Dagger with deadly poison] or whatever. :)</description>
		<content:encoded><![CDATA[<p>Re: Cambria&#8217;s post &#8211; you&#8217;d just add the Wound poison to the dagger in your bag and put the name of the dagger (Webbed Death) in the place of the [Dagger with deadly poison] or whatever. <img src='http://oneroguesjourney.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cambria</title>
		<link>http://oneroguesjourney.com/2009/10/21/weapon-swapping/comment-page-1/#comment-897</link>
		<dc:creator>Cambria</dc:creator>
		<pubDate>Thu, 22 Oct 2009 22:33:34 +0000</pubDate>
		<guid isPermaLink="false">http://oneroguesjourney.com/?p=946#comment-897</guid>
		<description>The part of the macro that says (dagger with wound poison), do you actually write this or would you say apply some wound poison to let&#039;s say webbed death and write (webbed death ) in yh macro. Sorry I&#039;m aacro noob and need some advice! Thank you</description>
		<content:encoded><![CDATA[<p>The part of the macro that says (dagger with wound poison), do you actually write this or would you say apply some wound poison to let&#8217;s say webbed death and write (webbed death ) in yh macro. Sorry I&#8217;m aacro noob and need some advice! Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zarnah</title>
		<link>http://oneroguesjourney.com/2009/10/21/weapon-swapping/comment-page-1/#comment-896</link>
		<dc:creator>Zarnah</dc:creator>
		<pubDate>Thu, 22 Oct 2009 12:50:40 +0000</pubDate>
		<guid isPermaLink="false">http://oneroguesjourney.com/?p=946#comment-896</guid>
		<description>I&#039;ve been using something like this on fights like Faction Champs and Icehowl so that I can use the helpful stuff (like Wound/Mind Numbing/Crippling) but only some of the time and Deadly the rest of the time - and Anesthetic on Icehowl when guildies don&#039;t get out of the way. Good thought on the extra dps tho, didn&#039;t consider using it for that but it makes a lot of sense...especially long fights when a different poison used to Shiv would be a nice thing to have, but Deadly is too important to our dps.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve been using something like this on fights like Faction Champs and Icehowl so that I can use the helpful stuff (like Wound/Mind Numbing/Crippling) but only some of the time and Deadly the rest of the time &#8211; and Anesthetic on Icehowl when guildies don&#8217;t get out of the way. Good thought on the extra dps tho, didn&#8217;t consider using it for that but it makes a lot of sense&#8230;especially long fights when a different poison used to Shiv would be a nice thing to have, but Deadly is too important to our dps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Riley</title>
		<link>http://oneroguesjourney.com/2009/10/21/weapon-swapping/comment-page-1/#comment-895</link>
		<dc:creator>Riley</dc:creator>
		<pubDate>Wed, 21 Oct 2009 19:44:55 +0000</pubDate>
		<guid isPermaLink="false">http://oneroguesjourney.com/?p=946#comment-895</guid>
		<description>if you are using 2 of the same weapon, you don&#039;t really even need the second line</description>
		<content:encoded><![CDATA[<p>if you are using 2 of the same weapon, you don&#8217;t really even need the second line</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Korzik</title>
		<link>http://oneroguesjourney.com/2009/10/21/weapon-swapping/comment-page-1/#comment-894</link>
		<dc:creator>Korzik</dc:creator>
		<pubDate>Wed, 21 Oct 2009 16:09:53 +0000</pubDate>
		<guid isPermaLink="false">http://oneroguesjourney.com/?p=946#comment-894</guid>
		<description>Nice post, although you did beat me to it. lol.
Personally I hope Blizz figures out a way to stop this.  It is a dps upgrade true.  But, it is so clunky and obviously unintended.  I&#039;ll collect my thoughts on it for later I suppose.

Enjoy the blog.  Keep it up.</description>
		<content:encoded><![CDATA[<p>Nice post, although you did beat me to it. lol.<br />
Personally I hope Blizz figures out a way to stop this.  It is a dps upgrade true.  But, it is so clunky and obviously unintended.  I&#8217;ll collect my thoughts on it for later I suppose.</p>
<p>Enjoy the blog.  Keep it up.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
