Thread: Mage Macros

Page 5 of 28 FirstFirst ...
3
4
5
6
7
15
... LastLast
  1. #81

    Re: *Mages Macros*

    ive heard of a macro that magi can use mid-air.
    how it goes, i have no clue really, not much of a macro man myself, i like having everything separate honestly.

    anyways, if you fly up to a hostile alliance, dismount, cast frost nova, and cast slowfall on yourself, you can watch that little football ( :-X ) fall to its death.

    assuming its not a priest, paladin, or another mage of course >.<
    This signature has been removed due to a violation of the Signatures + Avatars guidelines.

  2. #82

    Re: *Mages Macros*

    Quote Originally Posted by chupatwo
    ive heard of a macro that magi can use mid-air.
    how it goes, i have no clue really, not much of a macro man myself, i like having everything separate honestly.

    anyways, if you fly up to a hostile alliance, dismount, cast frost nova, and cast slowfall on yourself, you can watch that little football ( :-X ) fall to its death.

    assuming its not a priest, paladin, or another mage of course >.<

    Try

    #showtooltip
    /dismount
    /cast [mod:shift,@player] Slow Fall; Frost Nova

  3. #83

    Re: *Mages Macros*

    Quote Originally Posted by Pikatrap
    /cast arcane power
    /in 15 /w priestnamehere PI please!
    should work.
    You can't do timed commands in a macro. This will not work.
    As Swizzle said, you've gotta pull your head out of your ass and tell him manually :-*.

    Quote Originally Posted by Plexiforce
    Im trying to make a random poly macro ;D
    I tried finding the random mount macro i use to use but cant seem to find it to replicate
    Anyone got an idea?
    Should've read the first page of this thread? :
    Anyways, you can use the suffix -random together with /use and /cast (dunno if there's others, maybe /click aswell) to randomize choice between a number of options.
    The options have to be separated by commas (,)

    Quote Originally Posted by chupatwo
    ive heard of a macro that magi can use mid-air.
    how it goes, i have no clue really, not much of a macro man myself, i like having everything separate honestly.

    anyways, if you fly up to a hostile alliance, dismount, cast frost nova, and cast slowfall on yourself, you can watch that little football ( :-X ) fall to its death.
    I'm sorry man, but this was fixed a long time ago... Its true, that we were once able to do this with something alike what Teckdragon posted above.
    But FN doesn't dismount enemy players since patch 3.1 or sth. I believe Blastwave was fixed the same way not long ago.

  4. #84

    Re: *Mages Macros*

    Quote Originally Posted by ololo
    You can't do timed commands in a macro. This will not work.
    As Swizzle said, you've gotta pull your head out of your ass and tell him manually :-*.
    You can use timed commands in a macro.
    That's what the /in command is for (though you need an Ace AddOn to make it work, I reckon).
    You just can't use it for spells.

    Code:
    /cast Teleport: Dalaran
    /in 9 /s BY THE LIGHT OF THE MOON! *poof*
    This for example will work just fine.

    Quote Originally Posted by Plexiforce
    Im trying to make a random poly macro ;D
    I tried finding the random mount macro i use to use but cant seem to find it to replicate
    Anyone got an idea?
    /castrandom Polymorph, Polymorph(Pig), Polymorph(Cat)

    If it doesn't work try linking them directly from your Spellbook.

  5. #85
    Deleted

    Re: *Mages Macros*

    would it be very bad to use this macro?

    #showtooltip Arcane Missiles
    /use 13
    /use 14
    /castsequence [nochanneling] Arcane Blast,Arcane Blast, Arcane Blast, Arcane Blast, Arcane Missiles


    i use this on 5man instances and its not perfect but it does the job

  6. #86

    Re: Macro'es

    Quote Originally Posted by Troskarin
    "/yell KAGE BUNSHIN NO JUTSU
    /cast Mirror Image"
    Can't play without this one to save me when I pull aggro.
    ahhh, naruto.....lol

    Quote Originally Posted by mirages
    Please don't spam garbage in a very good thread. ^
    please don't be an ass and trash on someone who is contributing

  7. #87

    Re: *Mages Macros*

    Does anyone know if you can macro a macro?
    ie

    macro1: /cast Icy Veins
    /cast Arcane Power
    /use 13
    /use 14
    /cast Mirror Image

    macro2: #showtooltip
    /cast [mod:alt]"(macroname=macro1); Arcane Blast

    Basicly this would be a normal AB spammer and with alt pressed it will use you "I WIN" macro
    I suppose that the code for macro2 should look something different but i hope you get my point
    If anyone know how to make this or if its even possible i would be verry happy

  8. #88

    Re: *Mages Macros*

    Quote Originally Posted by Gallyer
    Does anyone know if you can macro a macro?
    ie

    macro1: /cast Icy Veins
    /cast Arcane Power
    /use 13
    /use 14
    /cast Mirror Image

    macro2: #showtooltip
    /cast [mod:alt]"(macroname=macro1); Arcane Blast

    Basicly this would be a normal AB spammer and with alt pressed it will use you "I WIN" macro
    I suppose that the code for macro2 should look something different but i hope you get my point
    If anyone know how to make this or if its even possible i would be verry happy
    I imagine this is possible, but not with that sort of syntax. I'll try some stuff out now and see if I can manage to get anything to work then edit this.


    [edit]

    #showtooltip Arcane Blast
    /cast [mod:alt] Arcane Power
    /cast [mod:alt] Icy Veins
    /use [mod:alt] 13
    /use [mod:alt] 14
    /cast [nomod] Arcane Blast

    This works. Tooltip and berserking can be put in/out as you please. I am no troll.

  9. #89

    Re: *Mages Macros*

    Wow thx alot Skarrad!
    You just saved me some more space on my bars.

    Working towards a cleaner UI =)

    Thx again!

  10. #90

    Re: *Mages Macros*

    Quote Originally Posted by Gallyer
    Does anyone know if you can macro a macro?
    ie

    macro1: /cast Icy Veins
    /cast Arcane Power
    /use 13
    /use 14
    /cast Mirror Image

    macro2: #showtooltip
    /cast [mod:alt]"(macroname=macro1); Arcane Blast
    In general, you can use a /click command to activate another macro located somewhere on your actionbars. This will require you to have both macros bound on your bars however, so I guess Skarrds method will work better for you.
    The /click is useful for succeeding the 255 char limit aswell.

  11. #91

    Re: *Mages Macros*

    Quote Originally Posted by Skarrd
    I imagine this is possible, but not with that sort of syntax. I'll try some stuff out now and see if I can manage to get anything to work then edit this.


    [edit]

    #showtooltip Arcane Blast
    /cast [mod:alt] Arcane Power
    /cast [mod:alt] Icy Veins
    /use [mod:alt] 13
    /use [mod:alt] 14
    /cast [nomod] Arcane Blast

    This works. Tooltip and berserking can be put in/out as you please. I am no troll.
    I am using this.

    #showtooltip
    /cast [mod:alt] Mirror Image
    /cast [mod:alt] Arcane Power
    /cast [mod:alt] Icy Veins
    /use [mod:alt] 13
    /cast [nomod] Arcane Blast

    What I want to do is add a yell or emote on the Alt click but no matter what I try it wont work.

    Anyone know how to make that work?

  12. #92

    Re: *Mages Macros*

    Amazing focus Poly macro:

    The way the macro works, it replaces your personal Polymorph hotkey and works off of setting focus and polying the focus target. See below:

    /clearfocus [target=focus,dead][target=focus,noexists]
    /focus [target=mouseover,exists, harm, nodead][target=focus,noexists,harm]
    /script SetRaidTarget("focus", 5)
    /cast [target=focus] Polymorph
    /stopmacro [target=focus, noexists, noharm]
    /p -Sheeping %F-

    The way the macro works is it will clear the focus target if your current focus is dead or does not exist for whatever reason, and then it will set your focus to your mouseover target or current target if that target is a hostile unit. It will then place a MOON over their head if it's a target in a dungeon or raid (enemy players cannot be raid targeted). Once you have set a focus target, or if a focus target is already set with this macro it will sheep them. If you are in a party and you have a focus set, it will call out the focus target that you are attempting to sheep which is great for arenas to let your partners know your CC target.

    The beauty of the macro is that once you have a focus target, simply hitting this poly macro will resheep the focus without changing your current target. Changing poly targets is as easy as mousing over another enemy target and hitting the poly macro again. It's really that simple, and once mastered, this macro will greatly improve your target control in BGs and arenas.

    Just thought I'd share what I consider to be the one macro I absolutely cannot live without.

  13. #93

    Re: *Mages Macros*

    What would be command be to target the nearest enemy?

  14. #94
    Deleted

    Re: *Mages Macros*

    Quote Originally Posted by Blergh
    What would be command be to target the nearest enemy?
    Tab.

  15. #95

    Re: *Mages Macros*

    Quote Originally Posted by Blergh
    What would be command be to target the nearest enemy?
    /targetenemy

  16. #96

    Re: *Mages Macros*

    Quote Originally Posted by Cracka_Bob

    4. you yell the following message: Fire style: Fireball Jutsu
    Sasuke > Naruto
    Quote Originally Posted by THE Bigzoman View Post
    Meant Wetback. That's what the guy from Home Depot called it anyway.
    ==================================
    If you say pls because it is shorter than please,
    I'll say no because it is shorter than yes.
    ==================================

  17. #97

    Re: *Mages Macros*

    Quote Originally Posted by Teckdragon
    Improved Invisibility Macro - spamming this buff won't accidentally remove the buff before the 3 second timer is up.

    #showtooltip Invisibility
    /stopcasting
    /cast Invisibility
    /run for i=1,40 do local n,_,_,_,_,d=UnitBuff("player",i) if(n=="Invisibility" and d==20) then CancelUnitBuff("player",i) end end
    /stopmacro [exists]
    /targetlasttarget
    Works like a charm apart from the targetlasttarget thing :'(

  18. #98

    Re: *Mages Macros*

    Change it to /targetlastenemy

  19. #99

    Re: *Mages Macros*

    Doesent work either im afraid. seems like the target is reset once youve been phased out.

  20. #100

    Re: *Mages Macros*

    this is good stuff i can use most of this~! thanks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •