Jump to content

Tomzy

Player
  • Content count

    4
  • Joined

  • Last visited

Community Reputation

0 Neutral

About Tomzy

  • Rank
    Newcomer
  1. Many thanks good sir, found what I did wrong
  2. Tomzy

    Post Your UI #3456789

    What skin are you using over the UI? especially the action bars.
  3. Trying to get make a spam able melee attack macro, but the problem each time I push it it turns on/off auto attack and I want it just to turn it on and then ignore that command. I have tried both: ///////////////////// /script if (not PlayerFrame.inCombat) then AttackTarget() end /cast Counterattack /cast Mongoose Bite /cast Raptor Strike ///////////////////////////////////// /script if not IsAutoRepeatAction(62) then CastSpellByName("Attack") end; /cast Counterattack /cast Mongoose Bite /cast Raptor Strike /////////////// and both of them turn on/off the autoattack, not just letting it repeat if it is on Edit: After looking at the link provided by storfan the macro should look like this: /run if not IsCurrentAction(A) then UseAction(A) end; /run CastSpellByName("Counterattack") /run CastSpellByName("Mongoose Bite") /run CastSpellByName("Raptor Strike") A = The number of the button where you have put your autoattack ability, check this link if you dont know the number: http://i.imgur.com/VGArn.jpg (stolen from this thread: https://forum.nostalrius.org/viewtopic.php?f=38&t=21017)
  4. Trying to make a macro that does wingclip when in melee and got mana else do conc shot. What I got so far: SuperMacro: function Slow() x = CheckInteractDistance("target", 1); y = CastSpellByName; z = UnitMana("player"); if x and z > 80 then y("Wing Clip") else if x and z > 60 then y("Wing Clip(Rank 2)") else if x and z > 40 then y("Wing Clip(Rank 1)") else y("Concussive Shot") end end end end Regular: /cast Counterattack(Rank 1); /script SlowResolve(); Edit: Works now
×