Results 1 to 4 of 4

Hybrid View

  1. #1
    Player
    Knownot's Avatar
    Join Date
    Dec 2013
    Posts
    36
    Character
    Jarvis Wyght
    World
    Balmung
    Main Class
    Marauder Lv 50

    Macro Help - Create a "setup" macro

    I've been searching all over and I'm not entirely sure it's possible but I'm wondering if I can write a macro to consume food and gyshal greens?

    Basically when I log in I'd much rather to press one button to set myself up for the day than press 5-6 buttons.

    Something like:

    /item "Pearl Chocolate" <me>
    /wait 2
    /item "Gysahl Greens" <me>
    /wait 3
    /companionaction "Healer Stance"
    (0)

  2. #2
    Player
    Ilisidi's Avatar
    Join Date
    Dec 2011
    Posts
    1,401
    Character
    Ilisidi Malguri
    World
    Ragnarok
    Main Class
    Botanist Lv 100
    Item use can't be macroed.
    (0)

  3. #3
    Player
    Frizze's Avatar
    Join Date
    Feb 2016
    Posts
    3,050
    Character
    Frizze Steeleblaze
    World
    Lamia
    Main Class
    Black Mage Lv 100
    Im not really a macro user. But i have a similar setup on the new command window. I can pop the window and have several things right next to each other to activate one after the next.
    (0)

  4. #4
    Player
    Mikoko_Miko's Avatar
    Join Date
    Jun 2014
    Posts
    330
    Character
    Mikoko Miko
    World
    Ultima
    Main Class
    Culinarian Lv 100
    There is no command that uses items, only assignment is possible. It's not possible with a single press, but it can be achieved by pressing the same button three times.

    Below is an example of a macro that sets an item into its own hotbar slot. Two additional presses are required after execution. It may be possible to shorten the wait time (in seconds). Assume that hotbar 2 is not shared, and this macro is assigned to slot 1 of that hotbar. Adjust the hotbar and slot numbers to fit your setup.
    Caution: This will overwrite shared hotbar 2.
    /macrolock
    /hotbar copy current 2 share 2
    /hotbar share 2 on
    /hotbar item "Pearl Chocolate" 2 1 <wait.2>
    /hotbar item "Gysahl Greens" 2 1 <wait.3>
    /hotbar share 2 off
    /companionaction "Healer Stance"

    This is a slightly modified version of a macro I posted in a past thread:
    What's a Macro for Phoenix Down?
    I referred to the "Message Macro Type ASWC" in Macrology (Third Edition).
    (0)