summaryrefslogtreecommitdiff
path: root/Data/BuiltIn/Libraries/lua-addons/addons/equipviewer/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'Data/BuiltIn/Libraries/lua-addons/addons/equipviewer/README.md')
-rw-r--r--Data/BuiltIn/Libraries/lua-addons/addons/equipviewer/README.md44
1 files changed, 44 insertions, 0 deletions
diff --git a/Data/BuiltIn/Libraries/lua-addons/addons/equipviewer/README.md b/Data/BuiltIn/Libraries/lua-addons/addons/equipviewer/README.md
new file mode 100644
index 0000000..c528c70
--- /dev/null
+++ b/Data/BuiltIn/Libraries/lua-addons/addons/equipviewer/README.md
@@ -0,0 +1,44 @@
+**Author:** Tako, Rubenator<br>
+**Version:** 3.3.0<br>
+**Date:** April 13, 2021<br>
+
+* Displays current equipment grid on screen. Also can show current Ammo count and current Encumbrance.
+
+## Settings
+
+* Most settings can be modified via commands, but you can edit the settings.xml directly for a few uncommon settings.
+
+**Abbreviation:** `//ev`
+
+## Commands
+1. position <xpos> <ypos>: move display to position (from top left)
+2. size <pixels>: set pixel size of each item slot (defaults to 32 -- same as the size of the item icons)
+3. scale <factor>: scale multiplier for size of each item slot (1 is 32px) -- modifies same setting as size
+4. alpha <opacity>: set opacity of icons (out of 255)
+5. transparency <transparency>: inverse of alpha (out of 255) -- modifies same setting as alpha
+6. background <red> <green> <blue> <alpha>: sets color and opacity of background (out of 255)
+7. ammocount: toggles showing current ammo count (defaults to on/true)
+8. encumbrance: toggles showing encumbrance Xs (defaultis on/true)
+9. hideonzone: toggles hiding while crossing zone lines (default is on/true)
+10. hideoncutscene: toggles hiding when in cutscene/npc menu/etc (default is on/true)
+11. justify: toggles between ammo text being right or left justifed (default is right justified)
+12. help: displays explanations of each command
+
+Legacy Command:
+game_path <path>: sets path to FFXI folder where you want dats extracted from. Backslashes `\` must be escaped (like so: `\\`) or use forewardslash `/` instead. (legacy command as of `3.3.1` in which the game path is now pulled from the registry, but this command is still here in case you want to pull from dats that exist elsewhere)
+
+### Example Commands
+```
+//ev pos 700 400
+//ev size 64
+//ev scale 1.5
+//ev alpha 255
+//ev transparency 200
+//ev background 0 0 0 72
+//ev ammocount
+//ev encumbrance
+//ev hideonzone
+//ev hideoncutscene
+//ev justify
+//ev help
+```