Organizer Library: Your Sets Table Contains Too Ma

Language: JP EN DE FR
2010-09-08
New Items
users online
Forum » Windower » Support » Organizer Library: Your sets table contains too ma
Organizer Library: Your sets table contains too ma
 Shiva.Malthar
Offline
Server: Shiva
Game: FFXI
user: Malthar
Posts: 516
By Shiva.Malthar 2016-04-19 15:04:44
Link | Quote | Reply
 
Organizer Library: Your sets table contains too many items.

Wait, what? What? What?!

I got this error when trying to do gs -o
Is it a wardrobe II thing again?
Offline
By Verda 2016-04-21 03:06:11
Link | Quote | Reply
 
From what I seen and what rooks said, it is old code, and from I've seen having bazaar'd items makes it happen. Might try removing items from bazaar. Basically it does some counting on the total number of items in your inventory + wardrobe, and forgets to count some things, like linkpearls that are equipped and bazaar'd items.
Code
if #inv > inventory_max and #ward + (#inv - inventory_max) < wardrobe_max then--this doesn't really work, it ignores bazaar items, ls pearls, etc


It's going through all your sets and counted the ones it found in your wardrobe 1 and inventory, and doesn't know about wardrobe 2 yet then seeing if there's room to move things into your inventory, counting free wardrobe space. But since ppl putting more in now and probably have stuff in their inventory and wardrobe 1 already, it thinks you can't fit it basically. addons\Gearswap\libs\organizer-lib.lua, rooks said he was gonna fix it so i'd just wait on that.
 Shiva.Malthar
Offline
Server: Shiva
Game: FFXI
user: Malthar
Posts: 516
By Shiva.Malthar 2016-05-11 12:56:04
Link | Quote | Reply
 
I added
* 2
at the end. It's a kludge, but at least it's working.
Code
local wardrobe_max = windower.ffxi.get_bag_info(8).max * 2
Log in to post.