Results 1 to 4 of 4
  1. #1
    Player
    Pcsh77's Avatar
    Join Date
    Dec 2013
    Posts
    1
    Character
    Billy Shears
    World
    Gilgamesh
    Main Class
    Conjurer Lv 45

    Macro for Presence of Mind + Raise?

    So I came up with the following Macro: /ac "Presence of Mind" <me> /p Raising <t> /ac Raise <t> However, the Macro never gets to the /ac Raise part. If I press the macro again, it will cast Presence of Mind once more, plus the message. Can anybody tell me what's wrong with it? Any suggestion will be most appreciatted.
    (0)

  2. #2
    Player
    Bixby's Avatar
    Join Date
    Mar 2011
    Posts
    1,534
    Character
    Ampersand Kai
    World
    Gilgamesh
    Main Class
    Pugilist Lv 50
    Actions in macros fire off one after the other with no pause in between. You're essentially trying to use POM and Raise at the same time when you push the button with that macro. It should work if you keep pressing; POM will go off the first time, then Raise will start casting on the first press after the animation for POM is done. But you'll end up spamming your party chat.

    I'd suggest one of the following.

    /ac "Presence of Mind" <me>
    /ac "Raise" <t>
    /wait 1
    /p Raising <t>

    Spam the button until you see Raise casting, then let it go to let the party message go through so that you're not spamming the chat log.

    If you want to only press it once:

    /ac "Presence of Mind" <me>
    /wait 1
    /ac "Raise" <t>
    /p Raising <t>
    (0)

  3. #3
    Player
    Swingman's Avatar
    Join Date
    Jan 2014
    Posts
    1
    Character
    Sey Swingman
    World
    Midgardsormr
    Main Class
    Conjurer Lv 72
    This works for my swiftcast raise macro. Don't know about Presence of Mind but it should be the same.

    /macroicon Raise
    /ac "Presence of Mind" <me>
    /ac Raise <t>
    /wait .5
    /ac Raise <t>

    This way if PoM isn't up, it'll case raise right away. If it is up then it'll pop and then cast raise.
    (1)
    Last edited by Swingman; 01-25-2014 at 02:43 AM.

  4. #4
    Player
    Nyaanyaa's Avatar
    Join Date
    Dec 2013
    Location
    Gridania
    Posts
    45
    Character
    Nyaanyaa Mewmew
    World
    Excalibur
    Main Class
    Conjurer Lv 50
    Quote Originally Posted by Swingman View Post
    /wait .5
    The /wait command works only with integers, so "/wait .5" is exactly the same as "/wait 1".
    (1)