Go to Page... |
Compatibility: | Update 43 (10.1.0) Gold Road (10.0.0) Scions of Ithelia (9.3.0) Endless Archive (9.2.5) base-game patch (9.1.5) Necrom (9.0.0) Scribes of Fate (8.3.5) |
Updated: | 08/11/24 05:03 AM |
Created: | 07/07/14 12:51 PM |
Monthly downloads: | 7,861 |
Total downloads: | 921,029 |
Favorites: | 730 |
MD5: | |
Categories: | Bags, Bank, Inventory, Auction House & Vendors, Mail, TradeSkill Mods, Miscellaneous |
#AlphaGear 2 #AutoCategory #BankManagerRevived #CDGBankStack #CarosLootList #CraftStoreFixedAndImproved #DoItAll #Dustman #GridList #Inventory Assistant #InventoryGridView #Inventory Insight (from Ashes -> IIfA) #InventoryManager #ItemCooldownTracker #ItemTrig #KhrillMasterCook #KhrillMerlinTheEnchanter #MailerDemon #MassDeconstructor #PersonalAssistant (Banking, Junk, Loot, Repair) #PotionMaker #QuickEnchanter #RulebasedInventory #SetTracker #WishList
FCOIS_CON_ICON_LOCK = 1 FCOIS_CON_ICON_GEAR_1 = 2 FCOIS_CON_ICON_RESEARCH = 3 FCOIS_CON_ICON_GEAR_2 = 4 FCOIS_CON_ICON_SELL = 5 FCOIS_CON_ICON_GEAR_3 = 6 FCOIS_CON_ICON_GEAR_4 = 7 FCOIS_CON_ICON_GEAR_5 = 8 FCOIS_CON_ICON_DECONSTRUCTION = 9 FCOIS_CON_ICON_IMPROVEMENT = 10 FCOIS_CON_ICON_SELL_AT_GUILDSTORE = 11 FCOIS_CON_ICON_INTRICATE = 12 FCOIS_CON_ICON_DYNAMIC_1 = 13 FCOIS_CON_ICON_DYNAMIC_2 = 14 FCOIS_CON_ICON_DYNAMIC_3 = 15 FCOIS_CON_ICON_DYNAMIC_4 = 16 FCOIS_CON_ICON_DYNAMIC_5 = 17 FCOIS_CON_ICON_DYNAMIC_6 = 18 FCOIS_CON_ICON_DYNAMIC_7 = 19 FCOIS_CON_ICON_DYNAMIC_8 = 20 FCOIS_CON_ICON_DYNAMIC_9 = 21 FCOIS_CON_ICON_DYNAMIC_10 = 22 FCOIS_CON_ICON_DYNAMIC_11 = 23 ... FCOIS_CON_ICON_DYNAMIC_30 = 42 FCOIS.numVars.gFCONumFilterIcons -- the maximum number of marker icons available (currently 42)
--!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! FCOItemSaver is NOT working with the gamepad mode enabled !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! --If you are using any of these API functions below with the gamepad mode enbaled they will throw error messages. --The only way to enable FCOIS with the gamepad mode enabled is to use the addon "Advanced Disable Controller UI" AND disable the gamepad mode --in the settings of this addon! This will allow you top play and fight with the gamnepad but the keyboard UI is shown in the inventories, --making FCOIS work properly. -- --You need to check the following within your addons code: --Is the gamepad mode enabled in the game: --if IsInGamepadPreferredMode() then -- --We are in gamepad mode so check if the addon Advanced Disable Controller UI is enabled -- --and the setting to use the gamepad mode in this addon is OFF -- if FCOIS.checkIfADCUIAndIsNotUsingGamepadMode() then -- --FCOIS will work properly. You can use the API functions now -- --Your code here -- else -- --FCOIS won't work properly! Do NOT call any API functions and abort here now -- return false -- end --else -- --We are in keyboard mode so FCOIS will work normal --end
If FCOIS then ---FCO ItemSaver is loaded --Now check if PlayerActivated already run for the addon If FCOIS.addonVars.gPlayerActivated then --Player activated event finished for FCOIS end end
--doNotCheckJewelry, boolean (optional! Default: false -> checks for jewelry and auto switches to jewelry crafting table checks): Do not check if any jewelry item is given at bagid, slotIndex and thus do not check if the jewelry is protected at the jewelry crafting table's deconstruction panel local isItemCurrentlyProtectedAtDeconstructionPanel = FCOIS.IsDeconstructionLocked(bagId, slotIndex, doNotCheckJewelry)
--Global function to return boolean value, if an item is marked -- + it will return an array as 2nd return parameter, containing boolean entries, one for each iconId. True if item is marked with this iconId, false if not --Check if an item is marked by the help of it's item id --itemInstanceId: The itemInstanceId or uniqueId of the item --iconIds: Specifies the icon the item is marked with. iconIds can be any of the marker icons FCOIS_CON_ICON_* or -1 for all icons. -- The parameter can be an array/table too. -- The array's/table's key can be any index/value that you like. -- The value to the key must be the icon number, or -1 for all icons (if -1 is used more than once in the table it'll only be checked once!). --excludeIconIds: Exclude the iconID or an array of iconIDs from the check. -- Can only be used together with iconIds = -1 or iconIds = {-1}! -- excludeIconIds cannot be -1 or the function will return nil! ---addonName (String): Can be left NIL! The unique addon name which was used to temporarily enable the uniqueId usage for the item checks. --- -> See FCOIS API function "FCOIS.UseTemporaryUniqueIds(addonName, doUse)" function FCOIS.IsMarkedByItemInstanceId(itemInstanceId, iconIds, excludeIconIds, addonName) if (iconIds ~= -1 and excludeIconIds ~= nil) or excludeIconIds == -1 then return nil, nil end if itemInstanceId == nil then return nil, nil end if not checkIfFCOISSettingsWereLoaded(true) then return false end --Build the itemInstanceId (signed) by help of the itemId local signedItemInstanceId = signItemId(itemInstanceId, nil, true, addonName, nil, nil) -- only sign --d(">FCOIS.IsMarkedByItemInstanceId, itemInstanceId: " .. tostring(itemInstanceId) .. ", signedItemInstanceId: " ..tostring(signedItemInstanceId)) if signedItemInstanceId == nil then return nil, nil end local isMarked = false local markedIconsArray = {} isMarked, markedIconsArray = checkIfItemIsMarkedAndReturnMarkerIcons(signedItemInstanceId, iconIds, excludeIconIds, addonName) return isMarked, markedIconsArray end -- FCOIS.IsMarkedByItemInstanceId --Global function to return boolean value, if an item is marked -- + it will return an array as 2nd return parameter, containing boolean entries, one for each iconId (key). True if item is marked with this iconId, false if not (value). --bag: The bag where the item is located --slot: The slotIndex where the item is located in the bag --iconIds: Specifies the icon the item is marked with. iconIds can be any of the marker icons FCOIS_CON_ICON_* or -1 for all icons. -- The parameter can be an array/table too. -- The array's/table's key can be any index/value that you like. -- The value to the key must be the icon number, or -1 for all icons (if -1 is used more than once in the table it'll only be checked once!). --excludeIconIds: Exclude the iconID or an array of iconIDs from the check. -- Can only be used together with iconIds = -1 or iconIds = {-1}! -- excludeIconIds cannot be -1 or the function will return nil! function FCOIS.IsMarked(bag, slot, iconIds, excludeIconIds) if (iconIds ~= -1 and excludeIconIds ~= nil) or excludeIconIds == -1 then return nil, nil end if not checkIfFCOISSettingsWereLoaded(true) then return false end --At least one of the needed function parameters is missing. Return nil, nil if (bag == nil or slot == nil or iconIds == nil) then return nil, nil end local signedItemInstanceId = myGetItemInstanceIdNoControl(bag, slot) if signedItemInstanceId == nil then return nil, nil end local isMarked = false local markedIconsArray = {} isMarked, markedIconsArray = checkIfItemIsMarkedAndReturnMarkerIcons(signedItemInstanceId, iconIds, excludeIconIds, nil) return isMarked, markedIconsArray end -- FCOIS.IsMarked
File Name |
Version |
Size |
Uploader |
Date |
2.5.9 |
543kB |
Baertram |
06/08/24 10:12 AM |
|
2.5.8 |
543kB |
Baertram |
06/07/24 03:10 PM |
|
2.5.7 |
540kB |
Baertram |
05/07/24 02:06 PM |
|
2.5.6 |
543kB |
Baertram |
05/06/24 11:58 AM |
|
2.5.5 |
538kB |
Baertram |
02/14/24 06:26 AM |
|
2.5.4 |
537kB |
Baertram |
12/06/23 04:38 PM |
|
2.5.3 |
537kB |
Baertram |
12/05/23 10:58 AM |
|
2.5.2 |
536kB |
Baertram |
12/04/23 05:39 PM |
|
2.5.1 |
536kB |
Baertram |
11/22/23 08:58 AM |
|
2.5.0 |
536kB |
Baertram |
10/26/23 01:04 PM |
|
2.4.9 |
536kB |
Baertram |
07/18/23 12:26 PM |
|
2.4.8 |
536kB |
Baertram |
04/12/23 06:42 PM |
|
2.4.7 |
536kB |
Baertram |
04/06/23 07:40 AM |
|
2.4.6 |
536kB |
Baertram |
02/06/23 07:11 AM |
|
2.4.5 |
536kB |
Baertram |
02/01/23 06:09 PM |
|
2.4.4 |
534kB |
Baertram |
12/04/22 03:33 PM |
|
2.4.3 |
533kB |
Baertram |
11/01/22 01:11 PM |
|
2.4.2 |
533kB |
Baertram |
11/01/22 07:29 AM |
|
2.4.1 |
533kB |
Baertram |
10/20/22 03:43 PM |
|
2.4.0 |
533kB |
Baertram |
10/10/22 03:58 PM |
|
2.3.9 |
532kB |
Baertram |
09/25/22 02:50 PM |
|
2.3.8 |
532kB |
Baertram |
09/01/22 03:42 PM |
|
2.3.7 |
532kB |
Baertram |
09/01/22 03:22 PM |
|
2.3.6 |
531kB |
Baertram |
08/21/22 12:05 PM |
|
2.3.5 |
531kB |
Baertram |
08/21/22 08:51 AM |
|
2.3.4 |
531kB |
Baertram |
08/21/22 07:24 AM |
|
2.3.3 |
534kB |
Baertram |
08/19/22 12:43 AM |
|
2.3.2 |
535kB |
Baertram |
08/18/22 11:04 AM |
|
2.3.1 |
532kB |
Baertram |
08/13/22 10:09 AM |
|
2.3.0 |
532kB |
Baertram |
07/17/22 04:40 PM |
|
2.2.9 |
529kB |
Baertram |
07/11/22 06:06 AM |
|
2.2.8 |
527kB |
Baertram |
06/18/22 02:39 PM |
|
2.2.6 |
530kB |
Baertram |
05/15/22 01:18 PM |
|
2.2.5 |
524kB |
Baertram |
04/05/22 04:21 PM |
|
2.2.4 |
527kB |
Baertram |
03/21/22 11:16 AM |
|
2.2.3 |
482kB |
Baertram |
10/31/21 05:32 PM |
|
2.2.2 |
481kB |
Baertram |
10/17/21 01:06 PM |
|
2.2.1 |
481kB |
Baertram |
09/19/21 04:57 PM |
|
2.2.0 |
478kB |
Baertram |
09/15/21 03:27 AM |
|
2.1.9 |
478kB |
Baertram |
08/17/21 02:19 PM |
|
2.1.8 |
469kB |
Baertram |
06/29/21 10:14 AM |
|
2.1.7 |
468kB |
Baertram |
06/24/21 04:17 PM |
|
2.1.6 |
469kB |
Baertram |
06/23/21 06:50 PM |
|
2.1.5 |
467kB |
Baertram |
06/18/21 05:17 AM |
|
2.1.3 |
465kB |
Baertram |
06/07/21 01:04 AM |
|
2.1.2 |
465kB |
Baertram |
06/06/21 11:48 AM |
|
2.1.1 |
465kB |
Baertram |
06/04/21 06:05 AM |
|
2.1.0 |
464kB |
Baertram |
06/01/21 06:07 AM |
|
2.0.3 |
446kB |
Baertram |
05/23/21 01:51 PM |
|
2.0.2 |
439kB |
Baertram |
03/08/21 01:57 AM |
|
2.0.1 |
439kB |
Baertram |
03/07/21 06:20 PM |
|
2.0.0 |
424kB |
Baertram |
12/15/20 02:21 AM |
|
1.9.9 |
423kB |
Baertram |
11/15/20 02:11 PM |
|
1.9.8 |
421kB |
Baertram |
10/11/20 02:18 PM |
|
1.9.7 |
420kB |
Baertram |
08/31/20 10:09 AM |
|
1.9.6 |
420kB |
Baertram |
08/19/20 01:51 PM |
|
1.9.5 |
413kB |
Baertram |
05/31/20 08:17 AM |
|
1.9.4 |
411kB |
Baertram |
05/23/20 08:03 AM |
|
1.9.3 |
411kB |
Baertram |
05/22/20 11:33 AM |
|
1.9.2 |
410kB |
Baertram |
05/03/20 09:09 AM |
|
1.9.1 |
409kB |
Baertram |
04/16/20 09:26 AM |
|
1.9.0 |
409kB |
Baertram |
04/16/20 04:13 AM |
|
1.8.9 |
409kB |
Baertram |
04/15/20 06:02 PM |
|
1.8.8 |
407kB |
Baertram |
04/12/20 12:16 PM |
|
1.8.7 |
407kB |
Baertram |
04/10/20 08:46 AM |
|
1.8.6 |
407kB |
Baertram |
04/09/20 08:14 PM |
|
1.8.5 |
407kB |
Baertram |
04/09/20 04:31 PM |
|
1.8.4 |
407kB |
Baertram |
04/08/20 04:03 PM |
|
1.8.3 |
405kB |
Baertram |
04/04/20 12:40 PM |
|
1.8.2 |
405kB |
Baertram |
04/03/20 06:32 AM |
|
1.8.0 |
405kB |
Baertram |
04/02/20 01:13 PM |
|
1.7.9 |
397kB |
Baertram |
03/14/20 05:29 PM |
|
1.7.8 |
397kB |
Baertram |
03/14/20 04:03 PM |
|
1.7.7 |
397kB |
Baertram |
03/02/20 01:07 PM |
|
1.7.6 |
397kB |
Baertram |
03/02/20 12:49 PM |
|
1.7.5 |
396kB |
Baertram |
02/27/20 05:25 AM |
|
1.7.4 |
399kB |
Baertram |
02/23/20 03:23 PM |
|
1.7.3 |
395kB |
Baertram |
11/20/19 11:24 AM |
|
1.7.2 |
394kB |
Baertram |
11/14/19 06:00 AM |
|
1.7.1 |
394kB |
Baertram |
11/11/19 03:24 PM |
|
1.7.0 |
393kB |
Baertram |
11/06/19 09:30 AM |
|
1.6.9 |
394kB |
Baertram |
10/22/19 08:27 AM |
|
1.6.8 |
394kB |
Baertram |
10/21/19 11:07 AM |
|
1.6.7 |
393kB |
Baertram |
10/21/19 08:25 AM |
|
1.6.6 |
387kB |
Baertram |
09/13/19 06:57 AM |
|
1.6.5 |
387kB |
Baertram |
09/02/19 02:40 PM |
|
1.6.4 |
387kB |
Baertram |
08/28/19 02:17 PM |
|
1.6.3 |
387kB |
Baertram |
08/23/19 02:11 PM |
|
1.6.1 |
387kB |
Baertram |
08/12/19 08:45 AM |
|
1.6.0 |
387kB |
Baertram |
08/11/19 09:18 PM |
|
1.5.9 |
363kB |
Baertram |
07/13/19 05:33 AM |
|
1.5.8 |
362kB |
Baertram |
07/05/19 08:02 AM |
|
1.5.7 |
362kB |
Baertram |
06/23/19 09:08 AM |
|
1.5.6 |
362kB |
Baertram |
06/18/19 04:04 PM |
|
1.5.5 |
362kB |
Baertram |
06/18/19 02:29 PM |
|
1.5.4 |
361kB |
Baertram |
06/18/19 12:00 PM |
|
1.5.3 |
361kB |
Baertram |
05/20/19 09:10 AM |
|
1.5.2 |
359kB |
Baertram |
05/19/19 05:29 PM |
|
1.5.1 |
356kB |
Baertram |
04/21/19 04:55 PM |
|
1.5.0 |
356kB |
Baertram |
02/10/19 08:12 AM |
|
1.4.9 |
353kB |
Baertram |
01/28/19 04:42 AM |
|
1.4.8 |
357kB |
Baertram |
01/27/19 03:11 PM |
|
1.4.7 |
355kB |
Baertram |
01/25/19 08:45 AM |
|
1.4.6 |
354kB |
Baertram |
01/03/19 07:39 AM |
|
1.4.5 |
354kB |
Baertram |
01/01/19 03:18 PM |
|
1.4.4 |
354kB |
Baertram |
12/30/18 08:00 AM |
|
1.4.3 |
341kB |
Baertram |
11/04/18 06:19 AM |
|
1.4.2 |
341kB |
Baertram |
10/31/18 09:48 AM |
|
1.4.1 |
330kB |
Baertram |
09/14/18 05:53 AM |
|
1.4.0 |
330kB |
Baertram |
09/01/18 04:11 PM |
|
1.3.9 |
399kB |
Baertram |
08/17/18 01:12 PM |
|
1.3.8 |
399kB |
Baertram |
08/17/18 08:06 AM |
|
1.3.7 |
399kB |
Baertram |
08/17/18 03:23 AM |
|
1.3.6 |
403kB |
Baertram |
08/12/18 08:55 AM |
|
1.3.5 |
401kB |
Baertram |
08/04/18 05:05 PM |
|
1.3.4 |
410kB |
Baertram |
07/22/18 07:10 PM |
|
1.3.3 |
407kB |
Baertram |
06/27/18 09:42 AM |
|
1.3.3 |
370kB |
Baertram |
06/23/18 06:54 PM |
|
1.3.1 |
370kB |
Baertram |
06/23/18 04:46 PM |
|
1.3.0 |
369kB |
Baertram |
06/02/18 05:23 PM |
|
1.2.9 |
368kB |
Baertram |
06/01/18 07:27 PM |
|
1.2.8 |
368kB |
Baertram |
05/27/18 02:05 PM |
|
1.2.7 |
367kB |
Baertram |
05/21/18 07:47 AM |
|
1.2.6 |
364kB |
Baertram |
04/28/18 06:16 PM |
|
1.2.5 |
361kB |
Baertram |
04/22/18 12:24 PM |
|
1.2.4 |
356kB |
Baertram |
04/02/18 09:47 AM |
|
1.2.3 |
362kB |
Baertram |
03/19/18 07:20 AM |
|
1.2.2 |
345kB |
Baertram |
02/25/18 09:16 AM |
|
1.2.1 |
344kB |
Baertram |
02/22/18 04:12 PM |
|
1.1.9a |
363kB |
Baertram |
02/12/18 07:13 AM |
|
1.1.9a |
393kB |
Baertram |
01/29/18 02:51 PM |
|
1.1.9 |
393kB |
Baertram |
01/27/18 06:42 PM |
|
1.1.8 |
372kB |
Baertram |
01/03/18 12:04 PM |
|
1.1.7 |
372kB |
Baertram |
12/10/17 06:47 AM |
|
1.1.6 |
368kB |
Baertram |
11/19/17 01:16 PM |
|
1.1.5 |
368kB |
Baertram |
11/05/17 11:45 AM |
|
1.1.4 |
368kB |
Baertram |
11/04/17 04:48 PM |
|
1.1.3 |
364kB |
Baertram |
11/01/17 12:59 PM |
|
1.1.2 |
364kB |
Baertram |
10/31/17 03:30 PM |
|
1.1.1 |
363kB |
Baertram |
09/17/17 01:02 PM |
|
1.1.0 |
363kB |
Baertram |
09/08/17 11:18 AM |
|
1.0.9 |
351kB |
Baertram |
08/16/17 07:54 PM |
|
1.0.8 |
351kB |
Baertram |
08/15/17 03:30 PM |
|
1.0.7 |
362kB |
Baertram |
07/29/17 07:17 AM |
|
1.0.6 |
362kB |
Baertram |
07/23/17 07:58 AM |
|
1.0.5 |
385kB |
Baertram |
07/16/17 03:06 PM |
|
1.0.4 |
337kB |
Baertram |
07/15/17 09:55 AM |
|
1.0.3 |
335kB |
Baertram |
07/02/17 11:27 AM |
|
1.0.2 |
335kB |
Baertram |
06/25/17 01:46 PM |
|
1.0.1 |
334kB |
Baertram |
06/24/17 09:56 AM |
|
1.0.0 |
332kB |
Baertram |
06/11/17 07:29 AM |
|
0.9.1 |
321kB |
Baertram |
03/30/17 03:18 PM |
|
0.9.0 |
314kB |
Baertram |
03/27/17 02:19 PM |
|
0.8.9 |
309kB |
Baertram |
03/02/17 05:34 PM |
|
0.8.8i |
308kB |
Baertram |
02/26/17 06:09 PM |
|
0.8.8g |
306kB |
Baertram |
02/19/17 09:14 AM |
|
0.8.8f |
306kB |
Baertram |
02/17/17 10:22 PM |
|
0.8.8e |
305kB |
Baertram |
02/16/17 03:09 PM |
|
0.8.8d |
305kB |
Baertram |
02/15/17 10:01 PM |
|
0.8.8c |
295kB |
Baertram |
01/30/17 05:55 AM |
|
0.8.8b |
301kB |
Baertram |
01/29/17 07:04 PM |
|
0.8.8a |
297kB |
Baertram |
01/16/17 03:42 PM |
|
0.8.8 |
293kB |
Baertram |
01/07/17 08:07 AM |
|
0.8.7i |
285kB |
Baertram |
11/27/16 07:00 AM |
|
0.8.7h |
280kB |
Baertram |
11/10/16 10:13 AM |
|
0.8.7g |
277kB |
Baertram |
10/30/16 01:19 PM |
|
0.8.7e |
275kB |
Baertram |
10/23/16 07:21 PM |
|
0.8.7d |
268kB |
Baertram |
10/23/16 10:36 AM |
|
0.8.7c |
268kB |
Baertram |
10/23/16 09:22 AM |
|
0.8.7b |
303kB |
Baertram |
10/16/16 09:57 AM |
|
0.8.7 |
303kB |
Baertram |
10/02/16 07:12 PM |
|
0.8.6d |
249kB |
Baertram |
08/05/16 07:39 AM |
|
0.8.6c |
248kB |
Baertram |
08/04/16 11:21 AM |
|
0.8.6b |
248kB |
Baertram |
08/04/16 08:51 AM |
|
0.8.6a |
246kB |
Baertram |
08/01/16 09:37 AM |
|
0.8.6 |
248kB |
Baertram |
07/31/16 09:20 AM |
|
0.8.5f |
262kB |
Baertram |
07/17/16 01:08 PM |
|
0.8.5e |
237kB |
Baertram |
07/14/16 01:29 PM |
|
0.8.5c |
226kB |
Baertram |
07/07/16 03:30 PM |
|
0.8.5b |
222kB |
Baertram |
06/06/16 04:16 PM |
|
0.8.5a |
222kB |
Baertram |
06/06/16 02:50 PM |
|
0.8.5 |
222kB |
Baertram |
06/06/16 12:35 PM |
|
0.8.4j |
222kB |
Baertram |
06/05/16 01:30 PM |
|
0.8.4i |
221kB |
Baertram |
05/07/16 06:45 PM |
|
0.8.4h |
221kB |
Baertram |
05/07/16 06:14 PM |
|
0.8.4g |
216kB |
Baertram |
04/29/16 07:25 AM |
|
0.8.4f |
220kB |
Baertram |
04/28/16 01:41 PM |
|
0.8.4e |
220kB |
Baertram |
04/24/16 02:59 PM |
|
0.8.4d |
219kB |
Baertram |
04/24/16 12:45 PM |
|
0.8.4c |
219kB |
Baertram |
04/10/16 02:48 PM |
|
0.8.4b |
219kB |
Baertram |
04/04/16 04:45 PM |
|
0.8.4a |
215kB |
Baertram |
03/31/16 05:27 PM |
|
0.8.4 |
213kB |
Baertram |
03/26/16 06:27 PM |
|
0.8.3b |
206kB |
Baertram |
02/14/16 01:16 PM |
|
0.8.3a |
204kB |
Baertram |
02/08/16 05:36 AM |
|
0.8.3a |
204kB |
Baertram |
02/08/16 05:23 AM |
|
0.8.3 |
204kB |
Baertram |
02/07/16 10:57 AM |
|
0.8.2a |
204kB |
Baertram |
02/06/16 12:00 PM |
|
0.8.2 |
204kB |
Baertram |
02/05/16 03:14 PM |
|
0.8.1 |
203kB |
Baertram |
01/17/16 08:58 AM |
|
0.8.0 |
202kB |
Baertram |
01/10/16 12:08 PM |
|
0.7.9f |
199kB |
Baertram |
01/09/16 11:51 AM |
|
0.7.9e |
196kB |
Baertram |
11/22/15 03:31 PM |
|
0.7.9d |
196kB |
Baertram |
11/21/15 03:11 PM |
|
0.7.9c |
194kB |
Baertram |
11/15/15 01:20 PM |
|
0.7.9b |
197kB |
Baertram |
11/10/15 06:28 AM |
|
0.7.9a |
197kB |
Baertram |
11/02/15 04:57 PM |
|
0.7.9 |
194kB |
Baertram |
11/01/15 03:29 PM |
|
0.7.8d |
192kB |
Baertram |
09/18/15 05:38 PM |
|
0.7.8c |
187kB |
Baertram |
09/15/15 06:26 PM |
|
0.7.8b |
185kB |
Baertram |
09/14/15 06:56 PM |
|
0.7.8a |
184kB |
Baertram |
09/14/15 10:46 AM |
|
0.7.8 |
183kB |
Baertram |
09/13/15 05:24 PM |
|
0.7.7a |
181kB |
Baertram |
09/01/15 07:43 PM |
|
0.7.7 |
181kB |
Baertram |
08/31/15 04:30 PM |
|
0.7.6a |
182kB |
Baertram |
08/10/15 06:06 PM |
|
0.7.6 |
182kB |
Baertram |
08/10/15 01:49 PM |
|
0.7.5 |
181kB |
Baertram |
08/10/15 10:48 AM |
|
0.7.4 |
181kB |
Baertram |
08/09/15 06:51 PM |
|
0.7.3 |
180kB |
Baertram |
08/06/15 10:00 PM |
|
0.7.2 |
178kB |
Baertram |
08/06/15 02:57 PM |
|
0.7.1 |
177kB |
Baertram |
08/04/15 05:12 PM |
|
0.7.0a |
176kB |
Baertram |
07/21/15 12:37 PM |
|
0.7.0 |
176kB |
Baertram |
07/19/15 06:20 PM |
|
0.6.9d |
175kB |
Baertram |
07/14/15 05:58 PM |
|
0.6.9c |
171kB |
Baertram |
07/14/15 11:50 AM |
|
0.6.9b |
171kB |
Baertram |
07/12/15 03:58 PM |
|
0.6.9a |
167kB |
Baertram |
07/01/15 10:24 AM |
|
0.6.9 |
165kB |
Baertram |
06/22/15 01:00 PM |
|
0.6.8 |
163kB |
Baertram |
06/15/15 06:05 PM |
|
0.6.7a |
161kB |
Baertram |
06/15/15 05:47 AM |
|
0.6.7 |
163kB |
Baertram |
06/14/15 02:00 PM |
|
0.6.6 |
155kB |
Baertram |
05/28/15 05:50 PM |
|
0.6.5 |
154kB |
Baertram |
05/28/15 02:48 PM |
|
0.6.4a |
151kB |
Baertram |
04/27/15 12:54 PM |
|
0.6.4 |
151kB |
Baertram |
04/27/15 10:54 AM |
|
0.6.3b |
143kB |
Baertram |
04/23/15 01:20 PM |
|
0.6.3a |
143kB |
Baertram |
04/20/15 04:03 PM |
|
0.6.3 |
143kB |
Baertram |
04/14/15 11:24 AM |
|
0.6.2 |
142kB |
Baertram |
04/13/15 04:29 PM |
|
0.6.1a |
142kB |
Baertram |
04/08/15 08:01 PM |
|
0.6.1 |
141kB |
Baertram |
04/06/15 06:48 PM |
|
0.6.0c |
134kB |
Baertram |
03/09/15 07:43 PM |
|
0.6.0b |
131kB |
Baertram |
03/07/15 09:24 AM |
|
0.6.0a |
134kB |
Baertram |
03/06/15 09:01 PM |
|
0.6.0 |
131kB |
Baertram |
03/03/15 04:54 PM |
|
0.5.6a |
131kB |
Baertram |
03/01/15 03:23 PM |
|
0.5.6 |
131kB |
Baertram |
02/26/15 06:17 PM |
|
0.5.5 |
130kB |
Baertram |
02/24/15 05:40 PM |
|
0.5.4a |
122kB |
Baertram |
02/20/15 11:40 AM |
|
0.5.3 |
120kB |
Baertram |
02/19/15 08:59 PM |
|
0.5.2a |
114kB |
Baertram |
02/18/15 06:50 AM |
|
0.5.2 |
114kB |
Baertram |
02/17/15 09:09 PM |
|
0.5.1c |
108kB |
Baertram |
02/10/15 04:38 AM |
|
0.5.1b |
110kB |
Baertram |
02/01/15 02:30 PM |
|
0.5.1a |
109kB |
Baertram |
02/01/15 12:48 AM |
|
0.5.1 |
107kB |
Baertram |
01/31/15 05:23 PM |
|
0.5.0 |
102kB |
Baertram |
01/25/15 05:23 PM |
|
0.4.9a |
102kB |
Baertram |
01/08/15 08:11 PM |
|
0.4.9 |
102kB |
Baertram |
01/08/15 11:00 AM |
|
0.4.8a |
102kB |
Baertram |
01/07/15 03:07 PM |
|
0.4.8 |
102kB |
Baertram |
01/06/15 11:56 AM |
|
0.4.7 |
98kB |
Baertram |
01/05/15 01:00 PM |
|
0.4.6d |
100kB |
Baertram |
01/04/15 11:54 AM |
|
0.4.6c |
98kB |
Baertram |
12/22/14 06:59 PM |
|
0.4.6b |
97kB |
Baertram |
12/22/14 05:52 PM |
|
0.4.6a |
97kB |
Baertram |
12/19/14 10:16 AM |
|
0.4.6 |
97kB |
Baertram |
12/17/14 07:55 PM |
|
0.3.2b |
74kB |
Baertram |
12/03/14 06:01 PM |
|
0.3.2a |
73kB |
Baertram |
12/02/14 11:29 AM |
|
0.3.2 |
75kB |
Baertram |
11/28/14 02:51 PM |
|
0.3.1b |
73kB |
Baertram |
11/18/14 05:11 PM |
|
0.3.1a |
73kB |
Baertram |
11/18/14 03:08 PM |
|
0.3.1 |
73kB |
Baertram |
11/17/14 09:06 PM |
|
0.3.0a |
68kB |
Baertram |
11/17/14 05:07 PM |
|
0.3.0 |
68kB |
Baertram |
11/17/14 04:07 PM |
|
0.2.9 |
67kB |
Baertram |
11/15/14 09:47 AM |
|
0.2.8 |
67kB |
Baertram |
11/15/14 06:52 AM |
|
0.2.7b |
66kB |
Baertram |
11/07/14 11:02 AM |
|
0.2.7a |
66kB |
Baertram |
10/10/14 11:44 AM |
|
0.2.7 |
68kB |
Baertram |
10/10/14 07:54 AM |
|
0.2.6 |
66kB |
Baertram |
10/08/14 01:44 PM |
|
0.2.5 |
66kB |
Baertram |
10/05/14 08:33 AM |
|
0.2.4 |
64kB |
Baertram |
10/04/14 01:48 PM |
|
0.2.3 |
64kB |
Baertram |
10/01/14 05:15 AM |
|
0.2.2 |
64kB |
Baertram |
09/29/14 12:11 PM |
|
0.2.1 |
63kB |
Baertram |
09/29/14 09:54 AM |
|
0.2.0 |
63kB |
Baertram |
09/16/14 02:47 PM |
|
0.1.9b |
63kB |
Baertram |
09/14/14 09:16 AM |
|
0.1.9a |
63kB |
Baertram |
09/13/14 10:16 AM |
|
0.1.9 |
64kB |
Baertram |
09/12/14 02:59 PM |
|
0.1.8 |
93kB |
Baertram |
09/09/14 04:45 AM |
|
0.1.7d |
62kB |
Baertram |
09/05/14 03:29 AM |
|
0.1.7c |
61kB |
Baertram |
09/02/14 01:08 PM |
|
0.1.7a |
59kB |
Baertram |
09/01/14 04:36 PM |
|
0.1.7 |
59kB |
Baertram |
08/31/14 05:02 PM |
|
0.1.6 |
55kB |
Baertram |
08/31/14 09:51 AM |
|
0.1.5a |
53kB |
Baertram |
08/30/14 07:01 AM |
|
0.1.5 |
50kB |
Baertram |
08/28/14 05:59 PM |
|
0.1.4a |
51kB |
Baertram |
08/20/14 12:49 PM |
|
0.1.4 |
51kB |
Baertram |
08/17/14 05:05 PM |
|
0.1.3a |
44kB |
Baertram |
08/12/14 08:30 AM |
|
0.1.3 |
44kB |
Baertram |
08/11/14 04:39 PM |
|
0.1.2 |
43kB |
Baertram |
08/10/14 09:52 AM |
|
0.1.1b |
41kB |
Baertram |
08/04/14 04:49 PM |
|
0.1.1a |
41kB |
Baertram |
08/04/14 04:08 PM |
|
1.1.0 |
41kB |
Baertram |
08/03/14 08:45 AM |
|
0.0.9 |
35kB |
Baertram |
07/22/14 01:33 PM |
|
0.0.8 |
35kB |
Baertram |
07/21/14 07:05 PM |
|
0.0.7a |
35kB |
Baertram |
07/21/14 04:06 PM |
|
0.0.7 |
34kB |
Baertram |
07/21/14 02:23 PM |
|
0.0.6 |
33kB |
Baertram |
07/19/14 07:25 AM |
|
0.0.5a |
33kB |
Baertram |
07/17/14 06:50 AM |
|
0.0.5 |
32kB |
Baertram |
07/11/14 10:05 PM |
|
0.0.4a |
32kB |
Baertram |
07/11/14 06:24 AM |
|
0.0.4 |
31kB |
Baertram |
07/07/14 03:43 PM |
|
0.0.2 - German |
6kB |
07/07/14 12:51 PM |
Comment Options |
05/20/19, 08:45 AM | |
|
Please read the addon description for the needed dependencies/libraries.
I recommand using Addon Selector and/or Votans Addon List to support automatic needed depencies/library enabling ingame if you en-/disable an addon. Important: This addon does not work in Gamepad mode and I will not support the gamepad mode! Please read this before posting the same questions again: FAQ / Frequently asked questions / Questions fréquemment posées / Oft gefragte Frage Before posting error messages or bugs: Read the FAQ linked above! Maybe it's not a bug but a feature... Read the "Known problems" and the "Current BETA -> Changelog" below! Maybe your bug was already mentioned. Find the comments where it was mentioned and only repost the same bug IF you are able to provide more info please! After that please read this: [Troubleshooting AddOn install/find & reporting errors] Especially the sections "lua error messages" and "How to report a lua error message/a bug to the developers" If you got problems report the error message here please, including information like:
Howto do a backup of your SavedVariables files? Read here Many thanks Known problems If your error is not listed here PLEASE READ the "Current beta" version's changelog below at the bottom of this sticky post. It should provide you a # you are able to reference then for further tests/feeback. It might be fixed already in the beta version. Download and install the beta like described below, and try if this is the case. Please provide feedback then too if the bug is fixed, or if not. Thank you! #27) Drag & drop of marked items directly from the CraftBagExtended panel to a mail slot works even if the FCOIS protection is enabled #58) Using dynamic icons as submenu will show the dynamic icons submenu out of bounds and not clickable + sometimes hide other non-dynamic icons (e.g. sell in guildstore) in the normal context menu then -> Problem is that ZOs code is not raising the events like inside the normal inventories. Asked for a fix/support in this forum thread Workaround None #76) Open bank after login and try to remove/add a marker icon via keybind-> Insecure error call Workaround Add icons via context menu, or open the player inventory after reloadui/login first and hover any item there before opening the bank. #79) Open a sealed writ from the inventory will throw an error message "Attempt to access a private function 'UseItem' from insecure code" Workaround None, not reproducable yet #233 + #234) AwesomeGuildStores new feature "Sell at trading house, directly from bank" is not working until AGS was updated and fixes the item drag&drop handlers. Same relates to item not being protected if items are added/dragged from AG's "Sell from CraftBag" feature CURRENT BETA VERSION - PLEASE TEST AND GIVE FEEDBACK -ALWAYS LOGOUT AND BACKUP YOUR SAVEDVARIABLES BEFORE TESTING ANY BETA VERSION OF ANY ADDON PLEASE- I'm not responsible for any data nor item loss, or other problems accross addons! At best: Disable all other addons if you test this beta, or only enable those who do not automate anything like deconstruction/sell/destroy etc. (or test those with a test char/on the PTS only). FCOIS BETA - live & PTS test version: No beta available Attention: Please ONLY extract the zip file's folder "FCOItemSaver" to your live/AddOns, or PTS/AddOns, folder, and NOT "FCOItemSaver-PTS\FCOItemSaver"! Changelog for the beta: FOIS BETA version - Changelog at GitHub "Currently worked on" means that this is not yet fully implemented and thus may show you chat debug messages or the functionality is buggy.
Last edited by Baertram : 12/19/23 at 06:13 AM.
|
|
Baertram |
View Public Profile |
Send a private message to Baertram |
Find More Posts by Baertram |
Add Baertram to Your Buddy List |
Baertram |
View Public Profile |
Send a private message to Baertram |
Find More Posts by Baertram |
Add Baertram to Your Buddy List |
09/03/24, 10:07 AM | |||
Forum posts: 2
File comments: 27
Uploads: 0
|
Re: Re: marking items inside storage chests
then i realized the issue i have is not directly with fcois but using the fcois submenu from inventory insight. as in right clicking on something in inventory insight that is inside a storage container (for example mark it as junk) so i don't think this issue is with fcois directly, sorry for the noise. |
||
|
Tobbe |
View Public Profile |
Send a private message to Tobbe |
Find More Posts by Tobbe |
Add Tobbe to Your Buddy List |
09/01/24, 12:15 PM | ||
|
Re: marking items inside storage chests
This sounds like a bug added by another addon you use then... Please follow the sticky comment above "How to report a lua error message/a bug to the developers" and provide me your details, so I can rebuild and test myself, thanks. Means: Disable ALL other addons and test, tell me steps how to reproduce then from login/reloadui to teh bug etc. Disable ANY addon that suppresses error messages (No Thank You, Bug Eater, etc.) ALWAYS! If it only occurs with other addons anbled, then it' s up to you to find the one that causes it please.
Last edited by Baertram : 09/01/24 at 12:16 PM.
|
|
|
Baertram |
View Public Profile |
Send a private message to Baertram |
Find More Posts by Baertram |
Add Baertram to Your Buddy List |
09/01/24, 06:52 AM | |
Forum posts: 2
File comments: 27
Uploads: 0
|
marking items inside storage chests
it appears to not be possible to use fcois to mark items that is in storage chests.
the right click submenu "FCO ItemSaver" only contains Lock, mark for selling and mark for selling at guild store. my plan was to go thru all my junk in the storage chests in one go and clean them up by marking items for decon but this appears to not be possible. has it always been like this? i have some vague memory a while back trying to something like this and the markers got all screwed up. perhaps it was disabled on purpose? |
|
Tobbe |
View Public Profile |
Send a private message to Tobbe |
Find More Posts by Tobbe |
Add Tobbe to Your Buddy List |
08/10/24, 05:19 PM | ||||||||
Re: Re: Re: Re: Re: Re: Re: Re: PTS U43
Thanks for the update, the errors are gone now.
|
||||||||
|
Neverlands |
View Public Profile |
Send a private message to Neverlands |
Send email to Neverlands |
Find More Posts by Neverlands |
Add Neverlands to Your Buddy List |
08/10/24, 09:00 AM | |||||||
|
Re: Re: Re: Re: Re: Re: Re: PTS U43
Thanks! Maybe being in a house is the thing I was missing, will try that.
Edit: My fault! I had uploaded the wrong files to github... Please re-download the PTS beta and see if the errors are one now.
Last edited by Baertram : 08/10/24 at 09:54 AM.
|
||||||
|
Baertram |
View Public Profile |
Send a private message to Baertram |
Send email to Baertram |
Find More Posts by Baertram |
Add Baertram to Your Buddy List |
08/10/24, 03:28 AM | ||||||
Re: Re: Re: Re: Re: Re: PTS U43
I made a short video; the errors appear directly after logging in the character: https://youtu.be/9M3HJpiZdPs
Last edited by Neverlands : 08/10/24 at 03:29 AM.
|
||||||
|
Neverlands |
View Public Profile |
Send a private message to Neverlands |
Send email to Neverlands |
Find More Posts by Neverlands |
Add Neverlands to Your Buddy List |
08/09/24, 05:12 PM | |||||
|
Re: Re: Re: Re: Re: PTS U43
Hmpf, why don't I get these again
Any partciular menu I need to open to see the errors?
|
||||
|
Baertram |
View Public Profile |
Send a private message to Baertram |
Send email to Baertram |
Find More Posts by Baertram |
Add Baertram to Your Buddy List |
08/09/24, 02:42 PM | ||||
Re: Re: Re: Re: PTS U43
Thanks for the beta PTS version - just tested it. Here are the errors I get:
Warning: Spoiler
Lua Code:
Lua Code:
Last edited by Neverlands : 08/09/24 at 02:42 PM.
|
||||
|
Neverlands |
View Public Profile |
Send a private message to Neverlands |
Send email to Neverlands |
Find More Posts by Neverlands |
Add Neverlands to Your Buddy List |
08/09/24, 01:13 PM | |
|
Re: Re: Re: PTS U43
Try this beta version please:
https://github.com/Baertram/FCOItemS.../heads/PTS.zip ----------- Thanks, did not get that error so far. Seems that something is wrong with the quickslots list control (might be changed by Zos and initialized later and thus does not exist until opened once), going to have a look. Edit: Seems I get another error earlier already related to Quickslot's list too! Did you get the same and maybe did not notice? Code:
bad argument #1 to 'SecurePostHook' (table expected, got nil) |rstack traceback: [C]: in function 'SecurePostHook' user:/AddOns/FCOItemSaver/src/EventsHooks/FCOIS_Hooks.lua:1649: in function 'FCOIS.CreateHooks' |caaaaaa<Locals> settings = [table:1]{}, locVars = [table:2]{options_enable_block_research = "Deaktiviere Analyse", options_icon27_enabled = "15. dynamische aktivieren", recipe_usage_not_allowed = "Rezept Einlesen nicht erlaubt:...", options_enable_block_deconstruction_exception_intricate = "Erlaube Verwerten für Aufwend...", options_icon24_enabled = "12. dynamische aktivieren", options_enable_auto_mark_research_items_in_chat_TT = "Gegenstände mit analysierbare...", migrate_ZOs_locks_to_FCOIS_locks_start = "[FCOIS]Durchsuche Inventare na...", options_icon18_color = "6. dynamische", options_header_trade = "Handel", options_auto_mark_new_items_icon_TT = "Das Markierungssymbol für neu...", options_automark_itemcooldowntracker_icon_TT = "Wähle das Symbol, welches an ...", options_header_sort_order_output_TT = "Selektiere das Symbol aus der ...", options_demark_all_others_TT = "Entferne alle anderen Markieru...", options_header_filters = "Filter", filter_guildstore = "[Gilden Laden] ", options_icon_sort_19 = "19.", options_equipment_markall_gear_add_weapons = "Waffen mit markieren", options_copy_sv_target_character = "Ziel-Charakter", options_auto_mark_traits_only = "Nur Eingenschaften setzen", options_icon2_color = "Farbe", options_icon_sort_2 = "2.", options_icons_dynamic_usable = "Dynamische Symbole - Gesamt ve...", SI_BINDING_NAME_FCOIS_MARK_ITEM_3 = "'Analyse' Symbol markieren", options_icon19_texture = "Symbol", options_header_migration = "Migration", options_description = "FCOItemSaver verschafft Ihnen ...", options_icons_gear2 = "Set 2", options_filter_button2 = "Knopf 2", options_icon4_size = "Größe", SI_BINDING_NAME_FCOIS_MARK_ITEM_17 = "Markiere mit dynamischen Symbo...", button_context_menu_toggle_anti_create_on = "Aktiviere 'Anti-Erstellen'", options_icon7_size_TT = "Größe des Symboles für die ...", options_auto_mark_sets_collection_unknown_icon = "Unbekannte Set-Sammlung Geg. S...", filter_lockdyn_15 = "4. dynamische", options_migrate_bag_type_6 = "ESO PLUS Bank", options_icon8_name_TT = "Ihr gewählter Name für das G...", options_icons_gear1 = "Set 1", options_icon_sort_1 = "1.", container_autoloot_not_allowed = "Autoloot des Behälters nicht ...", options_delete_marker_icons_TT = "Wähle den Markierungstyp aus,...", button_context_menu_toggle_anti_fence_sell_off = "Deaktiviere Hehler 'Anti-Verka...", filter_guildbank = "[Gilden Bank] ", options_auto_bind_missing_set_collection_pieces_to_chat = "Im Chat zeigen", options_icon2_color_TT = "Farbe für das Symbol der Gear...", options_contextmenu_show_menu_item_tooltip_protected_panels_TT = "Füge Informationen zu dem Sta...", options_auto_reenable_block_jewelry_deconstruction = "Reaktiviere Anti-Schmuck Verwe...", options_split_filters = "Filterknöpfe nicht verbinden...", chatcommands_filter3 = "|cFFFFFF'filter3'|cFFFF00: Kat...", options_enable_block_launder_selling_TT = "Deaktiviert die Geldwäsche be...", options_enable_block_sending_mail_TT = "Deaktiviert das Versenden von ..."}, mappingVars = [table:3]{noEntry = "-------------", noEntryValue = 1, maxLevel = 50, maxCPLevel = 160}, preHookMainMenuFilterButtonHandler = user:/AddOns/FCOItemSaver/src/Buttons/FCOIS_FilterButtons.lua:671, mainMenuBarButtonFilterButtonHandler = user:/AddOns/FCOItemSaver/src/EventsHooks/FCOIS_Hooks.lua:737, checkFCOISFilterButtonsAtPanel = user:/AddOns/FCOItemSaver/src/Buttons/FCOIS_FilterButtons.lua:517, showOrUpdateResearchFilterButtons = user:/AddOns/FCOItemSaver/src/EventsHooks/FCOIS_Hooks.lua:748, changeContextMenuInvokerButtonColorByPanelId = user:/AddOns/FCOItemSaver/src/FCOIS_ContextMenus.lua:2708, reParentAndAnchorContextMenuInvokerButtons = user:/AddOns/FCOItemSaver/src/FCOIS_ContextMenus.lua:2764, resetContextMenuInvokerButtonColorToDefaultPanelId = user:/AddOns/FCOItemSaver/src/FCOIS_ContextMenus.lua:2726, autoReenableAntiSettingsCheck = user:/AddOns/FCOItemSaver/src/Settings/FCOIS_Settings.lua:425, isResearchListDialogShown = user:/AddOns/FCOItemSaver/src/FCOIS_Functions.lua:1914, refreshPopupDialogButtons = user:/AddOns/FCOItemSaver/src/FCOIS_ContextMenus.lua:362, refreshEquipmentControl = user:/AddOns/FCOItemSaver/src/MarkersTooltips/FCOIS_MarkerIcons.lua:1211, checkCraftbagOrOtherActivePanel = user:/AddOns/FCOItemSaver/src/Panels/FCOIS_Panels.lua:127, updateFilteredItemCountThrottled = user:/AddOns/FCOItemSaver/src/Buttons/FCOIS_FilterButtons.lua:1616, onClosePanel = user:/AddOns/FCOItemSaver/src/Panels/FCOIS_Panels.lua:771, invContextMenuAddSlotAction = user:/AddOns/FCOItemSaver/src/FCOIS_ContextMenus.lua:4079, checkIfEnchantingInventoryItemShouldBeReMarked_AfterEnchanting = user:/AddOns/FCOItemSaver/src/FCOIS_Functions.lua:2661, resetToInventoryAndHideContextMenu = user:/AddOns/FCOItemSaver/src/EventsHooks/FCOIS_Hooks.lua:778 </Locals>|r user:/AddOns/FCOItemSaver/src/EventsHooks/FCOIS_Events.lua:1150: in function 'FCOItemSaver_Loaded' |caaaaaa<Locals> eventCode = 65536, addOnName = "FCOItemSaver", bagIdsToFilterForInvSingleSlotUpdate = [table:4]{1 = 1} </Locals>|r Attention: DebugLogViewer captures all kind of chat d() addon messages! And removes itemlinks from them, so only enable it to see if error messages happened "on current UI reload" prior to chat readiness (before EVENT_PLAYER_ACTIVATED fires). Edit2: As I thought, Zos has changed Quickslots keyboard to a Deferred initialization object Means it will not exist or have the sub controls like the scrolllist UNTIL you opened it once (inits then): ZO_Quickslot_Keyboard = ZO_DeferredInitializingObject:Subclass() So I have to recode a lot to make FCOIS work there *sigh*
Last edited by Baertram : 08/09/24 at 01:56 PM.
|
|
Baertram |
View Public Profile |
Send a private message to Baertram |
Send email to Baertram |
Find More Posts by Baertram |
Add Baertram to Your Buddy List |
08/09/24, 11:07 AM | |||
Re: Re: PTS U43
Just tested it with no other addons active. The errors come immediately:
Warning: Spoiler
Lua Code:
Lua Code:
Last edited by Neverlands : 08/09/24 at 11:11 AM.
|
|||
|
Neverlands |
View Public Profile |
Send a private message to Neverlands |
Send email to Neverlands |
Find More Posts by Neverlands |
Add Neverlands to Your Buddy List |
08/09/24, 07:03 AM | ||
|
Re: PTS U43
Do these errors also happen if all other addons and libs except FCOIS needed are turned off?
I can see for example that you use "Addon Category" addon there, GridList and others.
Last edited by Baertram : 08/09/24 at 07:03 AM.
|
|
|
Baertram |
View Public Profile |
Send a private message to Baertram |
Send email to Baertram |
Find More Posts by Baertram |
Add Baertram to Your Buddy List |
08/09/24, 06:19 AM | |
PTS U43
Hello, on PTS in the addon settings menu, FCO ItemSaver doesn't appear and I get these errors:
Lua Code:
Lua Code:
Last edited by Neverlands : 08/09/24 at 06:24 AM.
|
|
|
Neverlands |
View Public Profile |
Send a private message to Neverlands |
Send email to Neverlands |
Find More Posts by Neverlands |
Add Neverlands to Your Buddy List |
07/27/24, 08:40 AM | ||
|
Re: ResearchAssistant integration not working
Glad you found it and made it work, make sure to revert your file changes to make all work properly again please! |
|
|
Baertram |
View Public Profile |
Send a private message to Baertram |
Send email to Baertram |
Find More Posts by Baertram |
Add Baertram to Your Buddy List |
You have just downloaded by the author . If you like this AddOn why not consider supporting the author? This author has set up a donation account. Donations ensure that authors can continue to develop useful tools for everyone.