Advertisement
Guest User

Untitled

a guest
Jan 17th, 2017
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.91 KB | None | 0 0
  1. Topic updated 25.4.2016, added Windfury weapon swap (Wf in both weapons)
  2.  
  3. Okay so there has been talk about quick mob target-attacking. I wanted to bring this improvement here to get all our melee dpsers in good shape! :)
  4. So actually what the macro does is, that it enabes your autoattacks useing your keybinds to cast that ability, even you dont have RAGE or ENERGY to do it. I'm useing it both on my warrior and rogue.
  5.  
  6. Autoattack enabling macro
  7.  
  8. So first we have to enable the autoattacks by allowing them. We go to the Spellbook and drag that logo of your weapon which is "Attack" to somewhere in your actionbars. It doesn't have to be keybinded. It is so called autoattack enabler. Picture under
  9.  
  10.  
  11. So then you have to do macros and keybind them to your actionbars. Lets take for example a bloodthirst:
  12. /script for AtkSlot = 1,72 do if IsAttackAction(AtkSlot) and not IsCurrentAction(AtkSlot) then UseAction(AtkSlot); end; end;
  13. /cast Bloodthirst(rank 4)
  14.  
  15.  
  16. All you do is change the name of ability and its rank which is the highest on you. Rogues can do that macro for sinister strike and backstab. Fury warriors for all available like blood thirst, execute, overpower, whirlwind, hamstring, cleave, heroic and all that shit you use!
  17.  
  18. Windfury weapon swap macro
  19.  
  20. Next step going into more hardcore is double windfury, you have to install addon Supermacro to get this macro working. Basicly its a macro you spam, like any other ability, but it swaps your offhand to mainhand and so on every 5sec when you have windfury buff. Drag your "Attack" from spellbook to actionbar slot 10 like picture under:
  21.  
  22.  
  23. Do this macro to chat, so it tells you which is icon of your mainhand weapon (if you got f.e two different swords so it keeps your mh as a prio and just quickly swaps oh)
  24. /script SendChatMessage(GetInventoryItemTexture("player",16))
  25.  
  26.  
  27. For example if you have Ancient Qiraji Ripper, it's icon is INV_Sword59, INV_MACE28 is Misplaced Servo Arm
  28.  
  29. After keybind this macro like it was your backstab/sinister strike or any other warrior ability. You gotta change the part in the end of macro to your ability you want to use it with. Here's an example:
  30. /script local hasMainHandEnchant, mainHandExpiration, mainHandCharges, hasOffHandEnchant, offHandExpiration, offHandCharges= GetWeaponEnchantInfo(); if ((GetInventoryItemTexture("player",17))==("Interface\\Icons\\INV_MACE_28")and(offHandExpiration==nil or offHandExpiration<1000 or (mainHandExpiration~=nill and mainHandExpiration>4000))) then PickupInventoryItem(16); PickupInventoryItem(17) elseif ((mainHandExpiration~=nil and mainHandExpiration>6000)and(offHandExpiration==nil or offHandExpiration<1000)) then PickupInventoryItem(16); PickupInventoryItem(17)end
  31. /script if not IsCurrentAction(10) then UseAction(10) end;
  32. /cast Sinister Strike( Rank 8 )
  33.  
  34.  
  35. NOTIFICATION:Supermacro addon required! You can DL it from here https://drive.google.com/folderview?id=0ByAxutR4jmqfQ2QxZV9Qc0RnR28&
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement