<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Bear Oh Dear Bear, What Do I Press?</title>
	<atom:link href="http://gnomeaggedon.net/2012/06/02/bear-oh-dear-bear-what-do-i-press/feed/" rel="self" type="application/rss+xml" />
	<link>http://gnomeaggedon.net/2012/06/02/bear-oh-dear-bear-what-do-i-press/</link>
	<description>It&#039;s the end of the world as you know it - brought to you by a Gnome Mage with big balls of fire</description>
	<lastBuildDate>Sat, 09 Feb 2013 14:14:44 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Scott W. Martin</title>
		<link>http://gnomeaggedon.net/2012/06/02/bear-oh-dear-bear-what-do-i-press/#comment-15101</link>
		<dc:creator><![CDATA[Scott W. Martin]]></dc:creator>
		<pubDate>Sat, 09 Feb 2013 14:14:44 +0000</pubDate>
		<guid isPermaLink="false">http://gnomeaggedon.net/?p=9396#comment-15101</guid>
		<description><![CDATA[I too would like some macro help! I wrote a feral charge ravage macro a while back, but found it wouldn&#039;t work unless I had ravage on my hotbar somewhere else. I mainly want a good space saving macro for an endangered catbear. A single button that will stampeding roar for either form, skull bash either form, mangle either form, etc. Macroing in pounce to the opener and tf to the finisher sounds life good advice when I want to be lazy in a dungeon or solo, which is the only time I cat. My guild tells me I&#039;m too good a healer to &quot;waste&quot; as dps or tank.]]></description>
		<content:encoded><![CDATA[<p>I too would like some macro help! I wrote a feral charge ravage macro a while back, but found it wouldn&#8217;t work unless I had ravage on my hotbar somewhere else. I mainly want a good space saving macro for an endangered catbear. A single button that will stampeding roar for either form, skull bash either form, mangle either form, etc. Macroing in pounce to the opener and tf to the finisher sounds life good advice when I want to be lazy in a dungeon or solo, which is the only time I cat. My guild tells me I&#8217;m too good a healer to &#8220;waste&#8221; as dps or tank.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gameldar</title>
		<link>http://gnomeaggedon.net/2012/06/02/bear-oh-dear-bear-what-do-i-press/#comment-13545</link>
		<dc:creator><![CDATA[gameldar]]></dc:creator>
		<pubDate>Wed, 06 Jun 2012 02:22:28 +0000</pubDate>
		<guid isPermaLink="false">http://gnomeaggedon.net/?p=9396#comment-13545</guid>
		<description><![CDATA[I&#039;ve returned to my &#039;first&#039; toon - well the first one I created on my active server (Jubei&#039;Thos at the time) after I&#039;d settled in for a while... levelling my rogue! Yes I&#039;ve gone truly to the dark side (ok not quite the horde side...)!

Oh I also realised - it&#039;s worth having faire fire (feral) on your cat/bear bars again for rogues/ferals so you can stop them stealthing from range too.

But was that an invitation to clean up macros??? :)

I should get around to writing a macros post at some point... but basically the thing I always say when writing a macro is that in almost every case you only need to have the name of spell in the macro once (there are exceptions, e.g. you have a castsequence and a cast of the same spell in the same macro). 

It is largely about being cleaner and avoiding hitting the 255 character limit - but there is in theory a slight efficiency reason as well. Macros are evaluated line by line (we proved that back on the wowhead macros forum at some point - you can rewrite a macro within itself) so if you can inline the conditions it is more efficient. 

So your skull bash macro would end up looking like:

#showtooltip Skull Bash(Cat Form)
/cast [nostance:3] !Cat Form
/cast [nomod, @target][mod:shift, @focus] Skull Bash(Cat Form)

I&#039;m not sure if that is exactly what you are wanting - I guess you would be happy to skull bash your current target if you are holding down control or alt? If so change the last line to:

/cast [mod:shift, @focus][] Skull Bash(Cat Form)

The [] says to revert to default behaviour (i.e. on your current target or give you the hand if it is a friendly target spell and you have no target). They are evaluated in (left to right) order so, if you are holding shift, focus is your target, otherwise it reverts to default behaviour.

On that particular macro I&#039;d probably set up it to use bear form skull bash rather than shifting to cat - but I&#039;ve run out of macro slots...

Anyway I&#039;ll leave it there!

But my powershift macro is this - pretty simple, but basically I used it to go eat on mages that keep trying to slow me - it just powershifts in whatever form you are in so you can continue doing whatever you are doing. Actually I&#039;ve modified it slightly from mine because I don&#039;t have moonkin form (or tree of life - the spec:1. spec:2 should be right for you druid though). Only slightly annoying thing is it shows the ? icon if you are out of form. You could add a ; Travel Form at the end to put you into travel form if you use it from caster form (or replace Travel Form with your preferred &#039;default&#039; form):

#showtooltip
/cast [stance:1] !Bear Form; [stance:3]!Cat Form; [stance:2] !Aquatic Form; [stance:4] !Travel Form; [stance:5,spec:1] !Moonkin Form; [stance:5,spec:2] !Tree of Life


And one more for good measure - this is my &#039;travel&#039; form macro (which also powershifts on reuse), basically means it uses the best form for where I am... which is pretty much just for use in twin peaks...:
#showtoolip
/cast [swimming] !Aquatic Form; !Travel Form]]></description>
		<content:encoded><![CDATA[<p>I&#8217;ve returned to my &#8216;first&#8217; toon &#8211; well the first one I created on my active server (Jubei&#8217;Thos at the time) after I&#8217;d settled in for a while&#8230; levelling my rogue! Yes I&#8217;ve gone truly to the dark side (ok not quite the horde side&#8230;)!</p>
<p>Oh I also realised &#8211; it&#8217;s worth having faire fire (feral) on your cat/bear bars again for rogues/ferals so you can stop them stealthing from range too.</p>
<p>But was that an invitation to clean up macros??? <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I should get around to writing a macros post at some point&#8230; but basically the thing I always say when writing a macro is that in almost every case you only need to have the name of spell in the macro once (there are exceptions, e.g. you have a castsequence and a cast of the same spell in the same macro). </p>
<p>It is largely about being cleaner and avoiding hitting the 255 character limit &#8211; but there is in theory a slight efficiency reason as well. Macros are evaluated line by line (we proved that back on the wowhead macros forum at some point &#8211; you can rewrite a macro within itself) so if you can inline the conditions it is more efficient. </p>
<p>So your skull bash macro would end up looking like:</p>
<p>#showtooltip Skull Bash(Cat Form)<br />
/cast [nostance:3] !Cat Form<br />
/cast [nomod, @target][mod:shift, @focus] Skull Bash(Cat Form)</p>
<p>I&#8217;m not sure if that is exactly what you are wanting &#8211; I guess you would be happy to skull bash your current target if you are holding down control or alt? If so change the last line to:</p>
<p>/cast [mod:shift, @focus][] Skull Bash(Cat Form)</p>
<p>The [] says to revert to default behaviour (i.e. on your current target or give you the hand if it is a friendly target spell and you have no target). They are evaluated in (left to right) order so, if you are holding shift, focus is your target, otherwise it reverts to default behaviour.</p>
<p>On that particular macro I&#8217;d probably set up it to use bear form skull bash rather than shifting to cat &#8211; but I&#8217;ve run out of macro slots&#8230;</p>
<p>Anyway I&#8217;ll leave it there!</p>
<p>But my powershift macro is this &#8211; pretty simple, but basically I used it to go eat on mages that keep trying to slow me &#8211; it just powershifts in whatever form you are in so you can continue doing whatever you are doing. Actually I&#8217;ve modified it slightly from mine because I don&#8217;t have moonkin form (or tree of life &#8211; the spec:1. spec:2 should be right for you druid though). Only slightly annoying thing is it shows the ? icon if you are out of form. You could add a ; Travel Form at the end to put you into travel form if you use it from caster form (or replace Travel Form with your preferred &#8216;default&#8217; form):</p>
<p>#showtooltip<br />
/cast [stance:1] !Bear Form; [stance:3]!Cat Form; [stance:2] !Aquatic Form; [stance:4] !Travel Form; [stance:5,spec:1] !Moonkin Form; [stance:5,spec:2] !Tree of Life</p>
<p>And one more for good measure &#8211; this is my &#8216;travel&#8217; form macro (which also powershifts on reuse), basically means it uses the best form for where I am&#8230; which is pretty much just for use in twin peaks&#8230;:<br />
#showtoolip<br />
/cast [swimming] !Aquatic Form; !Travel Form</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gnomeaggedon</title>
		<link>http://gnomeaggedon.net/2012/06/02/bear-oh-dear-bear-what-do-i-press/#comment-13543</link>
		<dc:creator><![CDATA[Gnomeaggedon]]></dc:creator>
		<pubDate>Tue, 05 Jun 2012 20:36:19 +0000</pubDate>
		<guid isPermaLink="false">http://gnomeaggedon.net/?p=9396#comment-13543</guid>
		<description><![CDATA[The Druid was toon #2, a long time ago... I seem to remember BoomChicken form had just arrived at the time, as you would see people just standing around changing in and out of form... but it was long forgotton on the creation of Gnomer.

Rake/Lacerate... that&#039;s the kind of stuff I am looking for.. useless in Kitty form yes, but a little less useless.

I have barkskin split out as well... that&#039;s just the &quot;I&#039;m pooping my pants, and I don&#039;t want to go bear, but people are looking at me funny, so guess I better macro&quot;

I have a Boomkin powershift macro, but not one for resto... but hey, while you are dusting off my other macros, no reason why you don&#039;t share your powershift macro... for no other reason that &quot;powershift macro&quot; sounds very cool.]]></description>
		<content:encoded><![CDATA[<p>The Druid was toon #2, a long time ago&#8230; I seem to remember BoomChicken form had just arrived at the time, as you would see people just standing around changing in and out of form&#8230; but it was long forgotton on the creation of Gnomer.</p>
<p>Rake/Lacerate&#8230; that&#8217;s the kind of stuff I am looking for.. useless in Kitty form yes, but a little less useless.</p>
<p>I have barkskin split out as well&#8230; that&#8217;s just the &#8220;I&#8217;m pooping my pants, and I don&#8217;t want to go bear, but people are looking at me funny, so guess I better macro&#8221;</p>
<p>I have a Boomkin powershift macro, but not one for resto&#8230; but hey, while you are dusting off my other macros, no reason why you don&#8217;t share your powershift macro&#8230; for no other reason that &#8220;powershift macro&#8221; sounds very cool.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gameldar</title>
		<link>http://gnomeaggedon.net/2012/06/02/bear-oh-dear-bear-what-do-i-press/#comment-13540</link>
		<dc:creator><![CDATA[gameldar]]></dc:creator>
		<pubDate>Tue, 05 Jun 2012 01:52:21 +0000</pubDate>
		<guid isPermaLink="false">http://gnomeaggedon.net/?p=9396#comment-13540</guid>
		<description><![CDATA[Nice to hear a little from you! Life must be stressful if you&#039;ve been turned into a lazer chicken!!! 

Umm trying to remember what you have in cat/bear form when you&#039;re boomie/resto. Most of the toolset actually.. however the useful 

However the main other things you&#039;ll want apart from pounce in cat is if you have a pesky rogue/feral stick a bleed on them with rake/lacerate - particularly for rogues they can&#039;t remove it so it&#039;ll break their stealth after the 3s delay even if they do cloak/vanish.

BTW - unless you are specced feral you won&#039;t have survival instincts! Particularly since you don&#039;t have much on your bars it might be worth splitting barkskin out and just using it if you need it - you don&#039;t have the damage reduction stuff from feral spec so you might find you need all the time anyway, but often frenzied regen is all you need and if they continuing to beat on you it is just feeding the heals.

Apart from that a good powershift macro so you can free yourself while running away is all I&#039;d recommend (I have a nice one for powershifting regardless of my current form if you want I&#039;ll dig it out). I still tend to fill up my cat/bear bars even when in the caster specs, but your damaging attacks aren&#039;t going to do that much so apart from utility and adding bleeds I wouldn&#039;t worry about the attacks overly much.

Must resist to clean up your macros...]]></description>
		<content:encoded><![CDATA[<p>Nice to hear a little from you! Life must be stressful if you&#8217;ve been turned into a lazer chicken!!! </p>
<p>Umm trying to remember what you have in cat/bear form when you&#8217;re boomie/resto. Most of the toolset actually.. however the useful </p>
<p>However the main other things you&#8217;ll want apart from pounce in cat is if you have a pesky rogue/feral stick a bleed on them with rake/lacerate &#8211; particularly for rogues they can&#8217;t remove it so it&#8217;ll break their stealth after the 3s delay even if they do cloak/vanish.</p>
<p>BTW &#8211; unless you are specced feral you won&#8217;t have survival instincts! Particularly since you don&#8217;t have much on your bars it might be worth splitting barkskin out and just using it if you need it &#8211; you don&#8217;t have the damage reduction stuff from feral spec so you might find you need all the time anyway, but often frenzied regen is all you need and if they continuing to beat on you it is just feeding the heals.</p>
<p>Apart from that a good powershift macro so you can free yourself while running away is all I&#8217;d recommend (I have a nice one for powershifting regardless of my current form if you want I&#8217;ll dig it out). I still tend to fill up my cat/bear bars even when in the caster specs, but your damaging attacks aren&#8217;t going to do that much so apart from utility and adding bleeds I wouldn&#8217;t worry about the attacks overly much.</p>
<p>Must resist to clean up your macros&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gnomeaggedon</title>
		<link>http://gnomeaggedon.net/2012/06/02/bear-oh-dear-bear-what-do-i-press/#comment-13539</link>
		<dc:creator><![CDATA[Gnomeaggedon]]></dc:creator>
		<pubDate>Mon, 04 Jun 2012 22:55:15 +0000</pubDate>
		<guid isPermaLink="false">http://gnomeaggedon.net/?p=9396#comment-13539</guid>
		<description><![CDATA[Yay a Bear growl for me!

I know where your coming from Bear, I don&#039;t mind being busy the 1st 24 hours of a day, it&#039;s the extras that wear me down. My boss questioned why I claimed 44 hours for a task for last Thursday... but we both agreed it was a close estimate. 

Maybe I can lend you my Magely Timewarp... once it&#039;s off cooldown.]]></description>
		<content:encoded><![CDATA[<p>Yay a Bear growl for me!</p>
<p>I know where your coming from Bear, I don&#8217;t mind being busy the 1st 24 hours of a day, it&#8217;s the extras that wear me down. My boss questioned why I claimed 44 hours for a task for last Thursday&#8230; but we both agreed it was a close estimate. </p>
<p>Maybe I can lend you my Magely Timewarp&#8230; once it&#8217;s off cooldown.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Big Bear Butt (@BigBearButt)</title>
		<link>http://gnomeaggedon.net/2012/06/02/bear-oh-dear-bear-what-do-i-press/#comment-13538</link>
		<dc:creator><![CDATA[Big Bear Butt (@BigBearButt)]]></dc:creator>
		<pubDate>Mon, 04 Jun 2012 22:41:57 +0000</pubDate>
		<guid isPermaLink="false">http://gnomeaggedon.net/?p=9396#comment-13538</guid>
		<description><![CDATA[Bears answer when bears are not swamped by real life. Grrr.]]></description>
		<content:encoded><![CDATA[<p>Bears answer when bears are not swamped by real life. Grrr.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gnomeaggedon</title>
		<link>http://gnomeaggedon.net/2012/06/02/bear-oh-dear-bear-what-do-i-press/#comment-13532</link>
		<dc:creator><![CDATA[Gnomeaggedon]]></dc:creator>
		<pubDate>Sun, 03 Jun 2012 09:17:54 +0000</pubDate>
		<guid isPermaLink="false">http://gnomeaggedon.net/?p=9396#comment-13532</guid>
		<description><![CDATA[Never considered roar... but I thorn up if and when I remember... thanks for those tips!

Life has been on the &quot;full on&quot; mark for a while now... last 7 weeks have been 16-18 hour day stretches of work with Odin in between. 

I&#039;ve even started a few posts, but haven&#039;t had the energy to complete them, or even post them if they come close to satisfaction... Time is both short and passing by so fast.

But rest assured, I am well if tired, and the extended family are all alive and well.]]></description>
		<content:encoded><![CDATA[<p>Never considered roar&#8230; but I thorn up if and when I remember&#8230; thanks for those tips!</p>
<p>Life has been on the &#8220;full on&#8221; mark for a while now&#8230; last 7 weeks have been 16-18 hour day stretches of work with Odin in between. </p>
<p>I&#8217;ve even started a few posts, but haven&#8217;t had the energy to complete them, or even post them if they come close to satisfaction&#8230; Time is both short and passing by so fast.</p>
<p>But rest assured, I am well if tired, and the extended family are all alive and well.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Navimie</title>
		<link>http://gnomeaggedon.net/2012/06/02/bear-oh-dear-bear-what-do-i-press/#comment-13530</link>
		<dc:creator><![CDATA[Navimie]]></dc:creator>
		<pubDate>Sun, 03 Jun 2012 06:55:43 +0000</pubDate>
		<guid isPermaLink="false">http://gnomeaggedon.net/?p=9396#comment-13530</guid>
		<description><![CDATA[Wow, a long time since I&#039;ve seen you post Gnomey.  Don&#039;t forget to roar in bear!  It helps that tiny little bit!  And IF, just IF you had time before you went bear, I would put a thorns on myself.  But that&#039;s what I do when I&#039;m resto in PvP... those boomies might have some other ideas.

Don&#039;t ask me what to do in cat form.  Cat form is for sprinting and stampeding roar.  I have no other use for it.

I hope BBB can enlighten you more :) but it&#039;s good to see some movement on your site :)]]></description>
		<content:encoded><![CDATA[<p>Wow, a long time since I&#8217;ve seen you post Gnomey.  Don&#8217;t forget to roar in bear!  It helps that tiny little bit!  And IF, just IF you had time before you went bear, I would put a thorns on myself.  But that&#8217;s what I do when I&#8217;m resto in PvP&#8230; those boomies might have some other ideas.</p>
<p>Don&#8217;t ask me what to do in cat form.  Cat form is for sprinting and stampeding roar.  I have no other use for it.</p>
<p>I hope BBB can enlighten you more <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  but it&#8217;s good to see some movement on your site <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
