From bb5b1ff8d2594504550fb4c96ba7c28a8a93e765 Mon Sep 17 00:00:00 2001 From: Ian Anderson Date: Mon, 8 Feb 2021 17:21:09 -0800 Subject: [PATCH 1/4] Update FastCS.lua Add the unity warp NPCs to the exclusion list(currently, only home points books and waypoints are excluded) --- addons/FastCS/FastCS.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/FastCS/FastCS.lua b/addons/FastCS/FastCS.lua index 082d82342b..e3a4e08517 100644 --- a/addons/FastCS/FastCS.lua +++ b/addons/FastCS/FastCS.lua @@ -1,6 +1,6 @@ _addon.name = "FastCS" _addon.author = "Cairthenn" -_addon.version = "1.2" +_addon.version = "1.3" _addon.commands = {"FastCS","FCS"} --Requires: @@ -11,7 +11,7 @@ require("luau") defaults = {} defaults.frame_rate_divisor = 2 -defaults.exclusions = S{"home point #1", "home point #2", "home point #3", "home point #4", "home point #5", "survival guide", "waypoint"} +defaults.exclusions = S{"home point #1", "home point #2", "home point #3", "home point #4", "home point #5", "igsli", "urbiolaine", "teldro-kesdrodo", "nunaarl bthtrogg", "survival guide", "waypoint"} settings = config.load(defaults) -- Globals: From ec6acd0476b2247afa26f95d501eb6e82fed084a Mon Sep 17 00:00:00 2001 From: RubenatorX Date: Fri, 12 Mar 2021 12:19:47 -0700 Subject: [PATCH 2/4] Pouches Allow Auto-translate --- addons/Pouches/Pouches.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/addons/Pouches/Pouches.lua b/addons/Pouches/Pouches.lua index 815278f5cc..d935ad1868 100644 --- a/addons/Pouches/Pouches.lua +++ b/addons/Pouches/Pouches.lua @@ -58,9 +58,8 @@ end windower.register_event('addon command', function(...) local inv = windower.ffxi.get_items(0) -- get main inventory - local args = T{...}:map(string.lower) - item.name = table.concat(args," ") + item.name = windower.convert_auto_trans(table.concat({...}," ")):lower() item.count = 0 if inverted[item.name] == nil then log('Item, "'..item.name..'", does not exist.') From 2037ed128cfcd065e64264452c8e755b7cb17a27 Mon Sep 17 00:00:00 2001 From: Chiaia Date: Thu, 10 Jun 2021 02:04:01 -0400 Subject: [PATCH 3/4] June 9th 2021 Update --- addons/boxdestroyer/messages.lua | 74 ++++++++++++++++---------------- 1 file changed, 37 insertions(+), 37 deletions(-) diff --git a/addons/boxdestroyer/messages.lua b/addons/boxdestroyer/messages.lua index de74eafbe5..dd8de669c0 100644 --- a/addons/boxdestroyer/messages.lua +++ b/addons/boxdestroyer/messages.lua @@ -1,58 +1,58 @@ messages = { -- These dialogue IDs match "You were unable to enter a combination" for the associated zone IDs - [100] = 8075, - [101] = 7506, - [102] = 7926, - [103] = 8101, - [104] = 8666, - [105] = 7717, - [106] = 8091, - [107] = 7552, - [108] = 7621, - [109] = 8484, - [110] = 7608, - [111] = 8585, - [112] = 8187, + [100] = 8078, + [101] = 7509, + [102] = 7929, + [103] = 8104, + [104] = 8669, + [105] = 7720, + [106] = 8094, + [107] = 7555, + [108] = 7624, + [109] = 8487, + [110] = 7611, + [111] = 8588, + [112] = 8190, [113] = 7929, [114] = 7786, - [115] = 7882, - [116] = 7578, - [117] = 7585, - [118] = 8127, - [119] = 8364, - [120] = 7524, + [115] = 7885, + [116] = 7581, + [117] = 7588, + [118] = 8130, + [119] = 8367, + [120] = 7527, [121] = 8104, [122] = 7435, [123] = 7887, [124] = 7838, [125] = 7648, - [126] = 8071, - [127] = 7352, + [126] = 8074, + [127] = 7355, [128] = 7507, [130] = 7571, [153] = 11397, - [158] = 7383, + [158] = 7386, [159] = 8446, [160] = 7410, - [166] = 10579, - [167] = 10593, - [169] = 7540, - [172] = 7413, + [166] = 10582, + [167] = 10596, + [169] = 7543, + [172] = 7416, [173] = 10518, [174] = 11396, [176] = 7605, [177] = 11220, [178] = 11400, - [190] = 8254, - [191] = 8374, - [192] = 7410, - [193] = 8386, - [194] = 8266, - [195] = 7597, - [196] = 8306, - [197] = 7351, - [198] = 8272, - [200] = 7528, - [204] = 7516, + [190] = 8257, + [191] = 8377, + [192] = 7413, + [193] = 8389, + [194] = 8269, + [195] = 7600, + [196] = 8309, + [197] = 7354, + [198] = 8275, + [200] = 7531, + [204] = 7519, [205] = 11483, [208] = 8285, [212] = 10639, From d7fde530ba350ad46e1e7b081270ef63e3c4c748 Mon Sep 17 00:00:00 2001 From: zetaepyon Date: Mon, 14 Feb 2022 17:11:52 -0600 Subject: [PATCH 4/4] Update README.md Escape on `` --- addons/plugin_manager/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/plugin_manager/README.md b/addons/plugin_manager/README.md index dc4cbd0c6b..f6822552da 100644 --- a/addons/plugin_manager/README.md +++ b/addons/plugin_manager/README.md @@ -26,4 +26,4 @@ ## Settings Files The settings file for Plugin Manager are found in a single XML file with a format similar to the settings files for plugins. -* `data/settings.xml` - contains plugins and addons specific to each character. is loaded if there is not a set of plugins/addons inside tags that are a case-sensitive match to the player's name. +* `data/settings.xml` - contains plugins and addons specific to each character. \ is loaded if there is not a set of plugins/addons inside tags that are a case-sensitive match to the player's name.