Don't Starve Together

Don't Starve Together

119 ratings
InventorySorter
2
2
   
Award
Favorite
Favorited
Unfavorite
File Size
Posted
Updated
95.140 KB
5 Nov, 2017 @ 10:57pm
21 Dec, 2023 @ 6:13pm
36 Change Notes ( view )

Subscribe to download
InventorySorter

Description
Inventory bar slot Sorter (client only)
Changing inventory design.

This MOD is for playing on PC + Keyboard + Mouse.

* Other than PC
* Controller only
In such an environment there is a possibility not to do the intended operation.
Also, it may interfere with other MODs that modify Inventory.

If errors or troubles appear, it will be helpful if you let me know.
64 Comments
<3 4 hours ago 
Hey author, thanks for the mod, I just wanted to ask something. What does the function [move]/[Quick] do?
lifeking  [author] 5 Jun @ 1:24am 
Thanks for the response.
I'll think about it.
WOULINX 4 Jun @ 5:06am 
This is a really cool mod!

Could you please add some new features like vertical inventory positioning, options to increase or decrease inventory slots, a clear background for backpacks, and the options to change backpack positioning? Also, a clear background for the crafting menu would be amazing.

I really enjoy playing with a clear background. it's simple and gives me more space. It’s definitely a QoL improvement!
27 Oct, 2024 @ 11:45pm 
Hello author, I like this mod very much, but I can't play this on the wegame platform, can I carry this mod to wegame?
libero2711 28 Jul, 2024 @ 7:12am 
visual clutter: the mod
Olik 26 Apr, 2024 @ 2:29am 
Wheres all the configuration ??? im confused theres no ingame config so where do u change stuff also what hotkey is for inventory sorting ? so many questions...
Varrgas 2.0 24 Apr, 2024 @ 7:58pm 
I'm out of words about how amazing this mod is and the amount of QoL and fine tuning possibility it give us.
Sadly it seems the mod work less and less well, It's sad to see mod like this one, who are so much under-rated, being lost

Crossfingers for a nice Fork one day maybe :NA_Crystal:
lifeking  [author] 15 Nov, 2023 @ 4:50am 
Thank you and sorry.
I'm busy right now and don't have time to update the mod.
If I have a little more time, I will definitely update it.
I would appreciate it if you could have a little patience.
Antonio32A 14 Nov, 2023 @ 12:36pm 
Steam formatting messes with indentation so here's a hastebin link: {LINK REMOVED} (mirror: {LINK REMOVED}
Antonio32A 14 Nov, 2023 @ 12:35pm 
The bug that Guille mentioned can be fixed by changing the block at line 1557 to the following:

elseif control >= GLOBAL.CONTROL_INV_1 and control <= GLOBAL.CONTROL_INV_10 then
local inventory = self.owner.replica.inventory
if inventory ~= nil and inventory:IsVisible() then
local hot_key_num = control - GLOBAL.CONTROL_INV_1 + 1

if GLOBAL.TheInput:IsControlPressed(GLOBAL.CONTROL_CRAFTING_MODIFIER) then
self.controls.craftingmenu:SelectPin(hot_key_num)
else
local item = inventory:GetItemInSlot(hot_key_num + (inventory_sorter_data.shortcut_shift or 0))
if item ~= nil then
self.owner.replica.inventory:UseItemFromInvTile(item)
end
end
return true
end

See https://github.com/penguin0616/dst_gamescripts/blob/master/screens/playerhud.lua#L1253 for more info on how the game handles that weird keybind.