1. totem macro

    hello, someone can told me how i can make a macro for put down in the same time 2 or more totems?
    ty

  2. you have 3 totem sets besides from that you cant do it since every totem has a gcd. macros can never bypass gcd

  3. so how can i do a cast sequence with a macro, like putting down the first totem and the other afrer 4 sec?
    ty

  4. so how can i do a cast sequence with a macro, like putting down the first totem and the other afrer 4 sec?
    ty
    this is very simple, I use it on my shaman since I'm not lvl 30 yet and don't have Call of the Elements.
    Spoiler: Show

    #showtooltip
    /castsequence (name of first totem), (name of second totem), (name of xxxx totem)


    for example

    Spoiler: Show
    #showtooltip
    /castsequence Strength of Earth Totem, Searing Totem


    .....

    You can put "reset=5" before the name of first totem like this

    Spoiler: Show
    #showtooltip
    /castsequence reset=5 Strength of Earth Totem, Searing Totem


    This command will reset the sequence after 5 seconds, so if you only use the first totem, 5 seconds later que macro will come back to the first totem and you will have to cast it again before cast the second one. You'll have to press the macro button fast before it resets, or you just change the time to 8,9, you decide it.

  5. You cannot put two, three, four totems down using a macro. A cast sequence macro will use them in sequence as the name implies. You should use call of elements to summon all totems in your totem bar. I tried to find a macro to change totems in a totem bar but to no avail.

  6. You cannot put two, three, four totems down using a macro. A cast sequence macro will use them in sequence as the name implies. You should use call of elements to summon all totems in your totem bar. I tried to find a macro to change totems in a totem bar but to no avail.
    You can put ALL 4 Totems using a macro INSTANTLY.
    And you can have unlimited sets of totems additional to the default 3 sets.

    check:
    http://forum.molten-wow.com/showthread.php?t=250498

    I recommend creating a set for every class, Download Macaroon Addon, drag your macro tocreate floating buttons.

    If you need help or further clarification ask here.

    Note:its also possible to change totem sets automatically based on your target class and put the appropriate set of totems.

  7. using "totem timer" addon, you can set up far more than 3 sets of totems to drop at one time, but to get them out you would need some overlay macros (ie a mouse/keybored that has coordinates control to select them fast)

    meaning, yes, if u want to drop two totems with out using 2 gcds, u can only use one of the 3, other wise, macro out of game the buttons to change your totem sets manually and drop those.

    for the moments it takes to do such a thing you would have no control over ur character.

  8. using "totem timer" addon, you can set up far more than 3 sets of totems to drop at one time, but to get them out you would need some overlay macros (ie a mouse/keybored that has coordinates control to select them fast)

    meaning, yes, if u want to drop two totems with out using 2 gcds, u can only use one of the 3, other wise, macro out of game the buttons to change your totem sets manually and drop those.

    for the moments it takes to do such a thing you would have no control over ur character.
    I couldn't understand you.So here is what I did :

    1- Download Macaroon : http://wow.warcmaps.com/addons/files...loadaddon=6942
    2- Using: https://docs.google.com/spreadsheet/...rive_web#gid=1
    Create Set of Totems based on class (even class spec if you want)
    (note:some totem IDs are wrong in sheet1)
    3- Now using Macaroon create create a bar,create a button for each set of totems, copy and paste the appropriate macro text from the spread sheet to the button macro.

    4- Finished! you can additionally Keybind the buttons or use the mouse.


    Additionally :
    --------------------------------------------------------
    you can have auto totem setting macro like hunter's auto tracking macro:
    a- Download SuperDuperMacro addon
    b- type /macro, then click on super Duper Macro Button
    c- Create a script and name it AutoTotemsSetScript
    d- Copy and Paste the following:

    -----This table holds totem ids of Fire,Earth,Water and Air totems in that order
    ----- Add your desired class name and totem ids and thats all u hv to do!
    unit_table={
    ["Priest"]={58656,8143,8170,8177},
    ["Mage"]={58745,58582,8170,3738},
    ["Warlock"]={58656,8143,8170,3738},
    ["Druid"]={58656,58753,5394,58749}
    }

    if (UnitIsPlayer("target")) then
    className= UnitClassBase("target")
    if (unit_table[className]) then
    SetMultiCastSpell(133,unit_table[className][1])
    SetMultiCastSpell(134,unit_table[className][2])
    SetMultiCastSpell(135,unit_table[className][3])
    SetMultiCastSpell(136,unit_table[className][4])
    end
    end


    e- Create a new regular macro, name it AutoTotemsSetMacro
    Copy and paste the following for macro text:

    /sdm run AutoTotemsSetScript
    /cast Call of the Elements



    IMPORTANT NOTE: Totem ids in the script are just examples, you dont wanna put Frost Resist Totem vs a druid!


    Note: if you cannot understand this or need a more detailed guide, pls post here i will write a new detailed guide with pictures, if someone needs it.
    cheers

Posting Permissions

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