Macros in Chronicles of Arcadia allow you to automate certain in-game actions, making gameplay more efficient. You can use macros for various tasks like targeting enemies, summoning pets or executing skill rotations.
To create a macro, open the macro menu from the in-game options. A window will appear with multiple macro slots, along with a search bar at the bottom for easier organization. Select an empty slot and click "New" to start.
A new window will open where you can customize the macro. You can give it a name and select an icon by clicking the left arrow at the top. Icons are categorized into different types, such as class abilities, weapons, armor, food, and pets. While naming and selecting an icon isn't required, it helps with identification later.
Once you've chosen the icon and name, enter your macro commands in the text box and click "Save" when finished.
A few useful commands can help you get started with macros:
To use a specific spell, type:
/cast X
If you want to add a delay between actions, use:
/wait X
For targeting the nearest enemy, enter:
/run TargetNearestEnemy()
To open the portable mailbox, use:
/run OpenMail()
Managing pets is also possible. The following command summons or removes the pet in slot X:
/script if(IsPetSummoned(X) == false) then SummonPet(X) else ReturnPet(X) end
For using an equipped item from a specific slot:
/script UseEquipmentItem(X)
Raid management can be done through macros as well. If you need to swap the position of raid members, use:
/run MoveRaidMember(X,Y)
Finally, if you use the Kitty Combo system, you can trigger a specific combo sequence with:
/run Kitty.attack("X")
To open the Macro Window
/macro
Before using macros in combat, test them in a safe area to ensure they work correctly. You can combine multiple commands into a single macro but remember to use "/wait X" when needed to prevent errors. Keeping macros organized with clear names and icons will help you find them quickly during gameplay.