Macro Trinket Slot 1

4/14/2022by admin
Hi I've been trying to make a manifesto of madness macro for a few days but it hasn't been working for me...

Here is a list of the item slot numbers for your character: Head = 1 Neck = 2 Shoulders = 3 Body = 4 (shirt) Chest = 5 Waist = 6 Legs = 7 Feet = 8 Wrist = 9 Hand = 10 Finger1 = 11 Finger2 = 12 Trinket1 = 13 Trinket2 = 14 Back = 15 Mainhand = 16 Offhand = 17 Tabard = 19. Here is a graphical explaination of your character's item slot numbers. Left-click the minimap button and choose the set 2. Mouseover a set button you've created (Alt+click yourself in character sheet) 3. Use a key binding you define in the set ('Bind Key' button) 4. In macros with /itemrack equip setname 5. In events or scripts that use EquipSet('setname') Popout menus: Click an item or set in a menu to equip it.


I also tried the one Preheat linked but it didn't work for me after translating it to my client. (The french one).
The french macro :
#showtooltip Combustion
/use Manifeste de la folie
/cancelaura Manifeste de la folie : chapitre 1
/castsequence reset=30 Combustion, Explosion pyrotechnique, Explosion pyrotechnique
The only thing that doesn't work in this macro is the cancelaura everything else is working fine. :/
If someone can help making this macro usable in french it would greatly help because i really like the french voices of the game.^^
Have a nice day.^^

This tip is from Instance 127, at time index 1:31:24.

The purpose of this first section was to give people the basics for everything that follows – how to create a macro, how to use the “?” icon, and how to use that all-important command, #ShowToolTips.

The first thing I should do here, though, is remind people how to create a macro. What you need to do is either:

  1. type /macro in the chat window, or
  2. press ‘Esc’, and when the menu pops up, select the “macro” button

You should then click on the “new” button, and pick a name, and also an icon to use. For almost every macro here, the best icon to use is hte first – the ? one.

To illustrate this I suggested the following:

#ShowToolTips
/use 13

This simple macro will allow you to place a trinket (your top one) onto an action bar button, so it can be fired off whenever you key that button. The ? icon is really useful here: if you’ve selected this, then once your macro is complete, it will display whatever your current trinket is, even if you use a UIMod like ItemRack or TrinketMenu to manage your trinkets for you. (Similarly, for later macros, it will display the first command that it can activate, so you can see what it is you’re about to do.)

Macro Trinket Slot 1 2

If you want to do one for your second trinket slot, you’d use:

#ShowToolTips
/use 14

Macro

Equip Trinket Macro Classic Wow

Once you’ve got that basic setup, you can modify this to use any usable item – such as:

#ShowToolTips
/use Super Healing Potion

Macros For Trinkets Wow

#ShowToolTips
/use Heavy Mageweave Bandage

…however, there’s really not much point, except as practice; after all, if you want to use those things you can just drag them onto the action bar directly. These things only really come in useful when you use special commands, as covered in future segments. The ShowToolTips thing is only really useful when there’s more than one thing that the macro could activate.

Trinket Macros Classic Wow

I didn’t have time to explain in the segment, but the “13” refers to gear slot 13 on your paperdoll character sheet. You can find out more about these numbered locations somewhere like http://www.mmorpg-info.org/eq2/equipment-slots/.

Macro Use Trinket

The other thing like this that you can do is to link to bag slots – there’s information about that on WoWWiki: http://www.wowwiki.com/Making_a_macro#.2Fuse_.3Cbag.3E_.3Cslot.3E.

Comments are closed.