Skip to content

Items & Interaction

Picking things up

text
get lantern
get all chest
get 2.apple backpack

get <item> picks something up from the room. Add a container name to get something out of a container instead (in the room, or in your own inventory) — get all chest takes everything out of a chest, and get 2.apple backpack takes the second apple out of a backpack.

text
loot
loot 2.corpse

loot is shorthand for get all corpse — grab everything from a corpse in the room. Add a selector if there's more than one corpse to choose from.

Checking what you're carrying

text
inventory
inv
i

All three do the same thing: list what's currently in your inventory.

Putting things away

text
put apple backpack
put all chest
put 2.coin pouch

put <item> <container> moves an item from your inventory into a container — in the room, or in your own inventory (like putting coins into a pouch you're carrying).

Dropping and giving items

text
drop lantern
drop 2.sword

drop <item> leaves an item on the floor of your current room.

text
give apple guard
give 2.pelt quartermaster

give <item> <mob> hands an item directly to an NPC in your room — this is also how you'll complete item-delivery quests once you have what's needed.

Equipping items

text
equip sword
equip helmet
equip all.armor

equip <item> puts on anything equippable, swapping out whatever's already in that slot if needed. wear and wield do the same thing for armor and weapons specifically, if you'd rather be explicit about which:

text
wear helmet
wield sword
text
remove helmet
remove all

remove <item> takes something off and returns it to your inventory. remove all takes everything off at once.

text
equipment
eq

Shows everything you currently have equipped.

Selectors, in general

Across get, drop, give, put, equip, and remove, the pattern is the same: name a specific item by its keyword (sword), pick among duplicates with a number (2.sword), or act on everything at once with all or a narrower all.<category> (like all.armor).