View Single Post
09-04-11, 07:38 AM   #10
Taryble
A Molten Giant
 
Taryble's Avatar
Join Date: Jan 2009
Posts: 811
Oh, and there are ways to make your "big macro" smaller, Aanson.

A little editing dropped it to under 255 characters, and there are other ways to make it simpler, too.
Code:
#showtooltip
 /run SetTracking(1,true);SetTracking(2,false);SetTracking(3,false)
 /equip [noequipped:Fishing Poles] Bone Fishing Pole
 /equip [noequipped:Fishing Poles] Weather-Beaten Fishing Hat
 /use Weather-Beaten Fishing Hat
 /cast Fishing
That's 248 characters. :>

If you put all of your fishing gear into a Gear Set using the equipment manager, you can use a single line to swap into your Fishing Gear. The macro below assumes you've named the set "Fishing".

Code:
#showtooltip
 /run SetTracking(1,true);SetTracking(2,false);SetTracking(3,false)
 /equipset [noequipped:Fishing Poles] Fishing
 /use Weather-Beaten Fishing Hat
 /cast Fishing
178 characters.
__________________
-- Taryble
  Reply With Quote