MUME Help
SPECIFYING OBJECTS
|
picks up the first sword in the room |
|
picks up the second sword in the room |
"first" and "second" here means the first/second one you
see when you type look
.
Some commands will allow you to use an object that is either worn (in your equipment), in your inventory, or in your room. In that case, all three locations are searched, in that order.
Ordered selection
The following command will put the second sword that you have in your inventory into the third sack that you either have in your equipment, in your inventory, or which is in your room:
put 2.sword 3.sack
Note that the first argument, sword
, can only be in your
inventory, while the second one,
sack
, can be in either place.
You can also count "from the back" using negative numbers:
kill -1.orc
This will attack the last orc in
"look order". -2
would target the
second to last, and so on. last
can be used as an
alias for -1
:
drop last.sack
Location restrictions
For objects, you can also use one of theequipment.
,
inventory.
, and room.
prefixes (they can be abbreviated!) to narrow the search:
|
put 2nd sword into 1st sack in inventory |
|
put 2nd sword into 2nd sack in room |
Matching multiple keywords
By specifying several words separated by hyphens (-
), an
object or character will match
if all words match.
For example, shining-shirt
will match any
object that has keywords shining
and
shirt
.
Similarly, guard-uruk
will match any
character (NPC) with keywords
guard
and uruk
.
Matching many things
Some commands let you operate on several objects at once. Useall
or
all.<keyword>
to do so:
|
pick up everything from the room |
|
put all bread you have into the sack |
Special keywords and labels
The wordsme
, self
, and myself
are
permanent labels for the
character you're playing: look me
.
The word mount
is a permanent
label for any mount you are
riding or leading: saddle
mount
.
See help label
on how you can create
temporary labels (replacement keywords) for other
characters.
Generated on Thu Sep 5 18:09:39 2024