Stacks, is it possible/safe to adjust item stack sizes? #4543
-
Subject, like making clusters 99 or 999 instead of twelve? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
https://github.com/LandSandBoat/server/blob/89d17e2165a368f3791fa0831f39432578f8e34d/sql/item_basic.sql#L24 - the stackSize column This column is what you'd adjust to fulfill your request. Be aware though that the ffxi client locks the stack size of a lot of things and that making some items stack higher than the retail default stack size can make the client be "weird" (trades get weird if it doesn't recognize the non-default stack size; the AH can get wonky as well). The workaround for this is to use custom vendors for things that you want to use that have non-default stack sizes. |
Beta Was this translation helpful? Give feedback.
https://github.com/LandSandBoat/server/blob/89d17e2165a368f3791fa0831f39432578f8e34d/sql/item_basic.sql#L24 - the stackSize column
This column is what you'd adjust to fulfill your request. Be aware though that the ffxi client locks the stack size of a lot of things and that making some items stack higher than the retail default stack size can make the client be "weird" (trades get weird if it doesn't recognize the non-default stack size; the AH can get wonky as well). The workaround for this is to use custom vendors for things that you want to use that have non-default stack sizes.