
I've been playing a new character, and found some parts of the inventory system to be counter intuitive, hard to manage or easy to mess up (several containers, 30 different potions and a tent filled with random junk springs to mind).
I've been working on making inventory management easyer for newbies (and pros), and i've done it as follows:
- Objects are visually grouped in the following groups: "Containers", "Foodstuffs", "Keys", "Magical components", "Music related", "Pet", "Wands and Potions", "Resources", "Treasure", "Armor", "Weapons", "Furniture", "Tools", "Other". Due to some code issues this isn't optional, sorry guys!

- I coded a label command, allowing you to label an object with any keyword for later reference. For example, 'label portal cookies' allows you to 'put <item> cookies' without problems. Unlike engrave, it is only seen by the character who labelled it, it is free, it doesn't affect the objects name, and can be done from anywhere. It also has another function:
- Anti potion-clutter. You can add a label to a single potion, and all other potions of that type will automatically attain the same label. (For example, if Uguu find a azure potion, and finds it bestows firebreath, he types 'label azure firebreath' and any potions he'll find afterwards will show up with the 'firebreath' keyword. He can easily quaff them by typing 'quaff firebreath'.
I still have some other inventory tweaks coming up, like a find command to scan your whole inventory for a keyword, or a config option that automatically takes items you need from your containers. Easyer Re-equipping after death is also on the agenda.
What I need tested:
- The effect of item sorting on mobile resets. (Because of the groups, mobiles are sorted)
- Your preferred order for the object groups. Currently, I intend for 'containers' to stay at the top and 'other' at the bottom. I placed the rest just on a whim.
- Are there any groups missing that you would like to see?
- Any other items that should be labelled as potions are? (Like one is labelled X, all are labelled X?
- Are there any really cumbersome inventory management related tasks you chore with?
- Anything else you feel you should let me know.

As always, the codeport is open and free for you to test things.