├── .github ├── FUNDING.yml └── workflows │ ├── Trigger_Update_Pluginmaster.yml │ ├── Update_Metadata.yml │ └── Update_Pluginmaster.yml ├── .gitignore ├── .gitmodules ├── Debug.md ├── README.md ├── cn.json ├── cn ├── AutoRetainer.zip ├── DSREyeLocator.zip ├── Splatoon.zip └── unbanPlugins.bat ├── meta ├── donate │ ├── full.md │ └── short.md ├── front.md ├── install │ ├── installer.png │ ├── installerPunish.png │ ├── normal.md │ ├── official.md │ └── punish.md └── state │ ├── active.md │ └── complete.md ├── opcodes ├── 2022.05.27.0000.0000.txt ├── 2022.06.21.0000.0000.txt ├── 2022.07.08.0000.0000.txt ├── 2022.08.17.0000.0000.txt ├── 2022.08.20.0000.0000.txt ├── 2022.08.25.0000.0000.txt ├── 2022.09.07.0000.0000.txt ├── 2022.09.28.0000.0000.txt ├── 2022.10.05.0000.0000.txt ├── 2022.10.26.0000.0000.txt ├── 2022.11.01.0000.0000.txt ├── 2022.11.09.0000.0000.txt ├── 2022.11.10.0000.0000.txt ├── 2022.12.23.0000.0000.txt ├── 2023.01.11.0000.0000.txt ├── 2023.01.17.0000.0000.txt ├── 2023.02.03.0000.0000.txt ├── 2023.02.28.0000.0000.txt ├── 2023.03.24.0000.0000.txt ├── 2023.05.18.0000.0000.txt ├── 2023.05.31.0000.0000.txt ├── 2023.06.14.0000.0000.txt ├── 2023.07.06.0000.0000.txt ├── 2023.07.26.0000.0000.txt ├── 2023.09.28.0000.0000.txt ├── 2023.10.23.0000.0000.txt ├── 2023.11.09.0000.0000.txt ├── 2024.01.06.0000.0000.txt ├── 2024.02.05.0000.0000.txt ├── 2024.03.08.0000.0000.txt ├── 2024.03.27.0000.0000.txt ├── 2024.04.23.0000.0000.txt ├── 2024.06.18.0000.0000.txt ├── 2024.07.06.0000.0000.txt ├── 2024.07.10.0001.0000.txt ├── 2024.08.02.0000.0000.txt ├── 2024.08.21.0000.0000.txt ├── 2024.11.06.0000.0000.txt ├── 2024.11.20.0000.0000.txt ├── 2024.12.07.0000.0000.txt ├── 2025.01.14.0000.0000.txt ├── 2025.01.28.0000.0000.txt ├── 2025.02.19.0000.0000.txt ├── 2025.02.27.0000.0000.txt ├── 2025.03.18.0000.0000.txt ├── 2025.03.27.0000.0000.txt ├── 2025.04.16.0000.0000.txt ├── 2025.05.17.0000.0000.txt ├── 2025.06.10.0000.0000.txt ├── 2025.06.19.0000.0000.txt └── 2025.06.28.0000.0000.txt ├── pluginmaster.json └── pluginmaster_experimental.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightmareXIV/MyDalamudPlugins/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/Trigger_Update_Pluginmaster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightmareXIV/MyDalamudPlugins/HEAD/.github/workflows/Trigger_Update_Pluginmaster.yml -------------------------------------------------------------------------------- /.github/workflows/Update_Metadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightmareXIV/MyDalamudPlugins/HEAD/.github/workflows/Update_Metadata.yml -------------------------------------------------------------------------------- /.github/workflows/Update_Pluginmaster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightmareXIV/MyDalamudPlugins/HEAD/.github/workflows/Update_Pluginmaster.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightmareXIV/MyDalamudPlugins/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightmareXIV/MyDalamudPlugins/HEAD/.gitmodules -------------------------------------------------------------------------------- /Debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightmareXIV/MyDalamudPlugins/HEAD/Debug.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightmareXIV/MyDalamudPlugins/HEAD/README.md -------------------------------------------------------------------------------- /cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightmareXIV/MyDalamudPlugins/HEAD/cn.json -------------------------------------------------------------------------------- /cn/AutoRetainer.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightmareXIV/MyDalamudPlugins/HEAD/cn/AutoRetainer.zip -------------------------------------------------------------------------------- /cn/DSREyeLocator.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightmareXIV/MyDalamudPlugins/HEAD/cn/DSREyeLocator.zip -------------------------------------------------------------------------------- /cn/Splatoon.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightmareXIV/MyDalamudPlugins/HEAD/cn/Splatoon.zip -------------------------------------------------------------------------------- /cn/unbanPlugins.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightmareXIV/MyDalamudPlugins/HEAD/cn/unbanPlugins.bat -------------------------------------------------------------------------------- /meta/donate/full.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightmareXIV/MyDalamudPlugins/HEAD/meta/donate/full.md -------------------------------------------------------------------------------- /meta/donate/short.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightmareXIV/MyDalamudPlugins/HEAD/meta/donate/short.md -------------------------------------------------------------------------------- /meta/front.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightmareXIV/MyDalamudPlugins/HEAD/meta/front.md -------------------------------------------------------------------------------- /meta/install/installer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightmareXIV/MyDalamudPlugins/HEAD/meta/install/installer.png -------------------------------------------------------------------------------- /meta/install/installerPunish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightmareXIV/MyDalamudPlugins/HEAD/meta/install/installerPunish.png -------------------------------------------------------------------------------- /meta/install/normal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightmareXIV/MyDalamudPlugins/HEAD/meta/install/normal.md -------------------------------------------------------------------------------- /meta/install/official.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightmareXIV/MyDalamudPlugins/HEAD/meta/install/official.md -------------------------------------------------------------------------------- /meta/install/punish.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightmareXIV/MyDalamudPlugins/HEAD/meta/install/punish.md -------------------------------------------------------------------------------- /meta/state/active.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightmareXIV/MyDalamudPlugins/HEAD/meta/state/active.md -------------------------------------------------------------------------------- /meta/state/complete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightmareXIV/MyDalamudPlugins/HEAD/meta/state/complete.md -------------------------------------------------------------------------------- /opcodes/2022.05.27.0000.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|2E0 2 | -------------------------------------------------------------------------------- /opcodes/2022.06.21.0000.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|27B 2 | -------------------------------------------------------------------------------- /opcodes/2022.07.08.0000.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|7B 2 | FFXIVIpcSkillHandler|88 3 | ActorCast|77 4 | -------------------------------------------------------------------------------- /opcodes/2022.08.17.0000.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|195 2 | -------------------------------------------------------------------------------- /opcodes/2022.08.20.0000.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|9A 2 | -------------------------------------------------------------------------------- /opcodes/2022.08.25.0000.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|24A 2 | -------------------------------------------------------------------------------- /opcodes/2022.09.07.0000.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|336 2 | -------------------------------------------------------------------------------- /opcodes/2022.09.28.0000.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|3AF 2 | -------------------------------------------------------------------------------- /opcodes/2022.10.05.0000.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|1A5 2 | -------------------------------------------------------------------------------- /opcodes/2022.10.26.0000.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|193 2 | -------------------------------------------------------------------------------- /opcodes/2022.11.01.0000.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|1BB 2 | -------------------------------------------------------------------------------- /opcodes/2022.11.09.0000.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|10C 2 | -------------------------------------------------------------------------------- /opcodes/2022.11.10.0000.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|12C 2 | -------------------------------------------------------------------------------- /opcodes/2022.12.23.0000.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|224 2 | -------------------------------------------------------------------------------- /opcodes/2023.01.11.0000.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|2CE 2 | -------------------------------------------------------------------------------- /opcodes/2023.01.17.0000.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|2D9 2 | -------------------------------------------------------------------------------- /opcodes/2023.02.03.0000.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|EF 2 | -------------------------------------------------------------------------------- /opcodes/2023.02.28.0000.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|126 2 | -------------------------------------------------------------------------------- /opcodes/2023.03.24.0000.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|118 2 | -------------------------------------------------------------------------------- /opcodes/2023.05.18.0000.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|108 2 | -------------------------------------------------------------------------------- /opcodes/2023.05.31.0000.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|F9 2 | -------------------------------------------------------------------------------- /opcodes/2023.06.14.0000.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|2E0 2 | -------------------------------------------------------------------------------- /opcodes/2023.07.06.0000.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|29F 2 | -------------------------------------------------------------------------------- /opcodes/2023.07.26.0000.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|137 2 | -------------------------------------------------------------------------------- /opcodes/2023.09.28.0000.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|154 2 | -------------------------------------------------------------------------------- /opcodes/2023.10.23.0000.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|14B 2 | -------------------------------------------------------------------------------- /opcodes/2023.11.09.0000.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|245 2 | -------------------------------------------------------------------------------- /opcodes/2024.01.06.0000.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|220 2 | -------------------------------------------------------------------------------- /opcodes/2024.02.05.0000.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|8D 2 | -------------------------------------------------------------------------------- /opcodes/2024.03.08.0000.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|2D8 2 | -------------------------------------------------------------------------------- /opcodes/2024.03.27.0000.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|118 2 | -------------------------------------------------------------------------------- /opcodes/2024.04.23.0000.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|2FC 2 | -------------------------------------------------------------------------------- /opcodes/2024.06.18.0000.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|FF 2 | -------------------------------------------------------------------------------- /opcodes/2024.07.06.0000.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|151 2 | -------------------------------------------------------------------------------- /opcodes/2024.07.10.0001.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|1A3 2 | -------------------------------------------------------------------------------- /opcodes/2024.08.02.0000.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|3B5 2 | -------------------------------------------------------------------------------- /opcodes/2024.08.21.0000.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|394 2 | -------------------------------------------------------------------------------- /opcodes/2024.11.06.0000.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|10E 2 | -------------------------------------------------------------------------------- /opcodes/2024.11.20.0000.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|14C 2 | -------------------------------------------------------------------------------- /opcodes/2024.12.07.0000.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|2FA 2 | -------------------------------------------------------------------------------- /opcodes/2025.01.14.0000.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|F3 2 | -------------------------------------------------------------------------------- /opcodes/2025.01.28.0000.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|A0 2 | -------------------------------------------------------------------------------- /opcodes/2025.02.19.0000.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|3A7 2 | -------------------------------------------------------------------------------- /opcodes/2025.02.27.0000.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|3C0 2 | -------------------------------------------------------------------------------- /opcodes/2025.03.18.0000.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|F2 2 | -------------------------------------------------------------------------------- /opcodes/2025.03.27.0000.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|29E 2 | -------------------------------------------------------------------------------- /opcodes/2025.04.16.0000.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|221 2 | -------------------------------------------------------------------------------- /opcodes/2025.05.17.0000.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|99 2 | -------------------------------------------------------------------------------- /opcodes/2025.06.10.0000.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|1D8 2 | -------------------------------------------------------------------------------- /opcodes/2025.06.19.0000.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|2EB 2 | -------------------------------------------------------------------------------- /opcodes/2025.06.28.0000.0000.txt: -------------------------------------------------------------------------------- 1 | MapEffect|305 2 | -------------------------------------------------------------------------------- /pluginmaster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightmareXIV/MyDalamudPlugins/HEAD/pluginmaster.json -------------------------------------------------------------------------------- /pluginmaster_experimental.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NightmareXIV/MyDalamudPlugins/HEAD/pluginmaster_experimental.json --------------------------------------------------------------------------------