Hello, Can someone help me shorten this or find a better way to write it please.
I use another macro that says to click this button
/use [group:raid, @boss1, exists ] Fleeting Elemental Potion of Ultimate Power
/use [group:raid, @boss1, exists ] Fleeting Elemental Potion of Power
/use [group:raid, @boss1, exists ] Elemental Potion of Power of Ultimate Power
/use [group:raid, @boss1, exists ] Elemental Potion of Power
Try this
/stopmacro [nogroup:raid][@boss1,noexists]
/use Fleeting Elemental Potion of Ultimate Power
/use Fleeting Elemental Potion of Power
/use Elemental Potion of Power of Ultimate Power
/use Elemental Potion of Power
If you only use the same quality of potions every time you can shorten it a lot by using item:id in place of potion names.
edit: And looks like some of those potion names are wrong. Potion of Power of Ultimate Power seems wrong. But I don’t have an active alchemist so not certain.
2 Likes
That’s correct. You can use wowhead.com
to search for the item and get the item id from there. For example, “Fleeting Elemental Potion of Ultimate Power” will have a wowhead url for the top level version (ilevel 415) of this:
https://www.wowhead.com/item=191914/fleeting-elemental-potion-of-ultimate-power
The 191914 is the item id.
There may also be an addon for this too.
Top Level quality item id’s
fleeting elemental potion of ultimate power id=191914
Fleeting Elemental Potion of Power id = 191907
Elemental Potion of Power of Ultimate Power id = 191383
Elemental Potion of Power of Power id=191389
/stopmacro [nogroup:raid][@boss1,noexists]
/use item:191914
/use item:191907
/use item:191383
/use item:191389
The disadvantages of using item id’s is having to remember that 191389 is a Elemental Potion of Power of 3 star quality and not something else. and if you have lower quality versions of those pots in your bags they will have a different id and not get used.
2 Likes