Crates.io | export-ffxiv-macros |
lib.rs | export-ffxiv-macros |
version | 0.1.0 |
source | src |
created_at | 2021-07-15 01:17:03.568312 |
updated_at | 2021-07-15 01:17:03.568312 |
description | A CLI utility for exporting Final Fantasy XIV macros to TOML. |
homepage | https://github.com/carriejv/export-ffxiv-macros |
repository | https://github.com/carriejv/export-ffxiv-macros |
max_upload_size | |
id | 422958 |
size | 27,179 |
A simple tool that leverages libxivdat to dump Final Fantasy XIV macros to TOML.
Libxivdat could theoretically support writing back to MACRO.DAT
files. I might support that at some point.
export-ffxiv-macros
-> Exports all character-specific and system-wide macros located in the usual places. ($HOME/Documents/My Games/Final Fantasy XIV - A Realm Reborn/
)
export-ffxiv-macros path/to/MACRO.DAT path/to/out.toml
-> Exports a specific file.
This will search your actual home directory when run without args. If you sandbox your wine user directories, you'll need to run the windows app in wine or manually point the native app at the correct files.
[[macro]]
title = 'Low Spell Fx'
icon = 'Number0'
lines = [
'/bfx party simple',
'/bfx other off',
'/soundeffectsparty 50',
'/soundeffectsother 20',
'/ambientsounds 20',
]
text = '/bfx party simple /bfx other off /soundeffectsparty 50 /soundeffectsother 20 /ambientsounds 20'
Contributions are always welcomed. Please ensure code passes cargo test
, cargo clippy
, and rustfmt -v --check **/*.rs
before making pull requests.