Trinket Slot Macro Classic Wow
Posted : admin On 4/12/2022- Use Trinket Slot Macro Wow Classic
- Trinket Slot Macro Classic Wow Tailoring
- Trinket Slot Macro Classic Wow
- Trinket Slot Macro Classic Wow Addons
- Trinket Slot Macro Classic Wow Classic
- Trinket Slot Macro Classic Wow Addon
- Use Trinket Slot Macro Classic Wow
This macro is a rebuild of the above TotT macro, this one simply puts the focus target function into the macro itself and allows you to select your Focus target by targetting them and clicking this macro, then select the target to be TotT'ed to the Focus and hit the macro and up goes TotT. You cant use if statements in WoW Macros, or any decision operators with Blizzards LUA. Hypothetical code would be something like /run if GetItemCooldown('Mark of Supremacy')0 then UseAction(62) end; Where Mark of Supremacy is the item and 62 is actionbar slot Can use external program to bypass this however, PM if want more info. But you are right that trinkets are slot 13 (top trinket) and 14 (bottom) and the macro would be /use 14. If you are not going to macro the trinket with another ability such as Icy Veins (for example) just drag the trinket to your action bar and don't worry about taking up a macro slot. For example, I keep the pet food in the top right slot of my last bag (the bag all the way on the left), so that's bag 4, slot 4. From memory: #showtooltip 4 4 /cast Feed Pet /use 4 4 That shows the same tooltip and icon as the item in the bag slot. Including the number of items in the bag slot, so I know when it's time to go fishing.
Buy WoW Gold Cheap
- Buy Cheapest WoW Classic Gold Instant Delivery with a 4% off coupon: SEAN. Buy Cheap WoW Gold Classic at PVPBank using PayPal.
- Buy WoW Gold Safe and Fast with a 3% off coupon: AOE. Aoeah is one of the best places to buy WoW Gold. Register a new account and enjoy an extra 1% discount.
THISTLE TEA MACROS
This will drink your Thistle Tea then follow up with a Cold Blood and Eviscerate.
#show Thistle Tea
/use Thistle Tea
/castsequence reset=180 Cold Blood, Eviserate
Alternatively, you could designate a Button-Click or a Modifier ¡°[modifier:shift/ctrl/alt]¡± for using your Thistle Tea...
/use [button:2] Thistle Tea
/Castsequence reset=target Premeditation, Ambush, Eviscerate, Thistle Tea, Backstab, Sinister Strike, Hemorrhage
This macro will Premed -> Ambush -> Evis, then use your Tea, then Backstab -> Sinister Strike -> Hemorrhage. The nice thing about this macro is that you could simply use it for Thistle Tea at ANY TIME by just Right-clicking the Macro! This can help save space on your action bar.
To watch the Thistle Tea cooldown, just use the ¡° ¡± macro icon and add ¡°#show Thistle Tea¡± as the first like of your macro.
USE TRINKET MACROS:
I generally use the Equipped Macro Icon addon for these so that I can see exactly what trinkets I have equipped, but I am waiting for the addon to be debugged for 2.0, as it currently interferes with Stealth-Bar toggling.
These lines can also be added to the beginning of other macros, for that ¡°trinket boost¡± prior to putting the smack down!
Use Trinket in Top Slot:
/Use 13
Use Trinket in Bottom Slot:
/Use 14
Example of a ¡°use a Trinket by name, then cast a spell¡± Macro:
This macro requires 2 button pushes to activate the item and the spell. The '#show' at the beginning will display the item named and its cooldown - whether or not the item is actually equipped (I believe it is grayed out if it is not equipped). Be sure to use the ¡° ¡± macro icon.
#show <item name>
/use <item name>
/cast Blade Flurry
Alternatively, you may use a ¡°/castsequence¡± and insert the item name:
/castsequence reset=120 <item name>, Blade Flurry
Example of a Right-Click to Cast / Left-Click to Trinket macro. This will also show your Trinket on the icon so you can monitor the cooldown.
#show Black Pearl Panther
/startattack
/cast [button:2] Black Pearl Panther; Sinister Strike
APPLYING POISONS / SHARPENING STONES MACROS:
Useful for applying poisons with a few clicks. No need to open your Character window.
*We have heard of people having trouble with these macros when using non-standard UIs or ¡°Bar¡± addons.
This first one will apply poison to the MH with a ctrl-click and to the OH with an alt-click. It will also show how many doses of poison you have left in your bags.
#show <Poison Name>
/use <Poison Name>
/use [modifier:ctrl] 16
/use [modifier:alt] 17
Use Trinket Slot Macro Wow Classic
This second macro will apply your poison and to the Main Hand (16) if you left-click the macro. It will apply your poison to the Off Hand (17) if you right-click the macro. It will also show how many doses of poison you have left in your bags.#show <Poison Name>
/use <Poison Name>
/use [button:2] 17; 16
For applying a different poison to each weapon:
/castsequence [button:1] Crippling Poison II; [button:2] Wound Poison IV
/use [button:1] 16; [button:2] 17
Left-click it for main hand poison, right-click it for offhand poison. Also, because it is a ¡°/castsequence¡±, if you use the ¡° ¡± macro icon the icon changes to whichever poison you just applied and shows how many uses are left as well!
GUNS AND BOMBS!
SINISTER STRIKE (Left-Click) -> SHOOT (Right-Click)
Replace the ¡°Shoot Bow¡± with ¡°Shoot <ranged weapon of choice>¡±.
/cast [button:2] Shoot Bow; Sinister Strike
SHOOT (Left-Click) -> BOMB / GRENADE (Right-Click)
Trinket Slot Macro Classic Wow Tailoring
Put your bombs in your bag and update the ¡°x y¡± for the bag and slot, or just use the item by name.
/use [button:2] x y
/cast [button:1] Shoot Bow
Trinket Slot Macro Classic Wow
Macros |
---|
General guides |
Macros Beginners Guide |
Useful macros by class |
Main Menu |
---|
This page lists macro conditionals, keywords used with macro commands, the RestrictedEnvironment and the SecureStateDriver API to allow limited logic for player convenience without trivializing the game.
Refer to secure command options for syntax and making a macro for a tutorial.
Targeting keywords
Targeting keywords begin with @
and assign a temporary target to the macro command. (This does not change the player's selected target.)
- @unitId
- Any valid unitId.
- @cursor
- Immediately targets the ground under the cursor.
- @none
- Interupts auto self-cast and requires a targeting cursor.
Trinket Slot Macro Classic Wow Addons
Boolean conditions
Trinket Slot Macro Classic Wow Classic
All other conditionals evaluate as either true to execute the macro command, or false to skip it. The no
prefix reverses this (ie, nodead means alive).
The following tables categorize each boolean condition by whether it evaluates the state of any target, only the player, or the user interface.
Macro Conditional | Similar API | Description |
---|---|---|
exists | UnitExists() | The unit exists |
help, harm | UnitCanAssist() and UnitCanAttack() | The unit exists and can be targeted by helpful/harmful spells |
dead | UnitIsDeadOrGhost() | The unit exists and is dead |
party, raid | UnitInParty() and UnitInRaid() | The unit exists and is in your party/raid |
unithasvehicleui | UnitInVehicle() | The unit exists and is in a vehicle |
Trinket Slot Macro Classic Wow Addon
Macro Conditional | Similar API | Description |
---|---|---|
canexitvehicle | CanExitVehicle() | In a vehicle and able to exit |
channeling, channeling:spellName | UnitChannelInfo('player') and ChannelInfo() | Channeling any spell, or a certain spell |
combat | InCombatLockdown or UnitAffectingCombat('player') | In combat |
equipped:type, worn:type | IsEquippedItemType(type) | Refer to itemType for possible types (ie, weapon) and subtypes (ie, sword) |
flyable | IsFlyableArea() | Unreliable in Wintergrasp |
flying | IsFlying() | Mounted or flight form, and in the air |
form:n, stance:n | GetShapeshiftForm() | Refer to GetShapeshiftForm for possible values |
group, group:party, group:raid | IsInGroup() and IsInRaid() | Self-explanatory |
indoors, outdoors | IsIndoors() and IsOutdoors() | Self-explanatory |
mounted | IsMounted() | Self-explanatory |
pet:name, pet:family | UnitCreatureFamily('pet') | Using a hunter pet by name or family |
petbattle | C_PetBattles.IsInBattle() | In a pet battle |
resting | IsResting() | In a rested zone |
spec:n, spec:n1/n2 | GetActiveSpecGroup(false) | Activated the n'th (or any of n1, n2) spec |
stealth | IsStealthed() | Self-explanatory |
swimming | IsSubmerged() | Self-explanatory |
talent:row/col | The given row/col talent is active |
Macro Conditional | Similar API | Description |
---|---|---|
actionbar:n, bar:n, or bar:n1/n2/... | GetActionBarPage() | The n'th (or any of n1, n2, ...) action bar page appears |
bonusbar, bonusbar:n | HasBonusActionBar() | The bonus action bar is visible; see |
button:n, btn:n1/n2/..., btn:<virtual click> | OnClick | The mouse button used as left (1), right (2), middle (3), extra (4 & 5) or virtual |
cursor | GetCursorInfo() | Dragging an action button (item, spell, macro, etc.) |
extrabar | HasExtraActionBar() | An extra action bar/button is visible |
modifier, mod, mod:key, mod:action | IsModifierKeyDown() or IsModifiedClick(action) | Accepts shift, ctrl, alt, lshift, rshift, ..., and any action title |
overridebar | HasOverrideActionBar() | The override bar is replacing the main action bar |
possessbar | IsPossessBarVisible() | The possess bar is visible |
shapeshift | HasTempShapeshiftActionBar() | The temporary shapeshift action bar is replacing the main action bar |
vehicleui | HasVehicleActionBar() | The vehicle UI is active |
Patch changes
Patch 6.0.2 (2014-10-14): 'talent' conditional added.
Patch 2.3.0 (2007-11-13): Several conditions and shorthand alternatives added.[1]
Patch 2.0.1 (2006-12-05): Added.
References
Use Trinket Slot Macro Classic Wow
- ^Iriel and slouken 2007-08-08. Re: Upcoming 2.3 Changes - Concise List.