Loading...
  1. Dismiss Notice
  2. Dismiss Notice
  3. Dismiss Notice
  4. Dismiss Notice
  5. Dismiss Notice
  6. Dismiss Notice
  7. Dismiss Notice
  8. If this is your first visit, you may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Questions on Cleric (Aion 4.5)

Discussion in 'Questions' started by Minamiya, Apr 10, 2014.

Thread Status:
Not open for further replies.
  1. Guille

    Guille i am chillermo Forum Legend

    Joined:
    Jul 24, 2010
    Messages:
    4,105
    Likes Received:
    1,841
    Trophy Points:
    488
    Location:
    Pallet Town
    Macros
    Option 1: "/Use [horizontal#] [vertical#]"
    Option 2: "/Use [item_name]"
    Option 2.5: "/Variable [variableID] plus /Use [VariableID] + [item_name]"

    Examples:

    Option 1: For this one you have to keep your items in static inventory slots, as this command will use the items in the inventory slots you tell the macro to. /Delay is needed because if you change items too fast (without delay), the items will go to different slots and you won't be able to reuse the macro successfully without arranging the items again to the slot they were previously.
    Code:
    /Use 1 1
    /delay 1
    /Use 2 1
    /delay 1
    /Use 3 1
    /delay 1
    /Use 4 1
    /delay 1
    /Use 5 1
    
    Option 2: Just have the right name of the items you want to use (Only works if the 2 sets have not the same names)
    Code:
    /Use Enraged Mastarius's Hauberk
    /Use Enraged Mastarius's Handguards
    /Use Enraged Mastarius's Spaulders
    /Use Enraged Mastarius's Chausses
    /Use Enraged Mastarius's Brogans
    
    Option 2.5: Same as the 2, but using Variables so the macro would be shorter (use only for items with long names)
    Code:
    /Variable 2 Enraged Mastarius's
    /Use [Variable2] Hauberk
    /Use [Variable2] Handguards
    /Use [Variable2] Spaulders
    /Use [Variable2] Chausses
    /Use [Variable2] Brogans
    
     
    2 people like this.
Thread Status:
Not open for further replies.

Share This Page