bbailey / BucketMUD

BucketMUD is a MUD engine based on EmberMUD.
Other
4 stars 2 forks source link

vnum command extended to find object type at level #11

Open Alixandra opened 14 years ago

Alixandra commented 14 years ago

example: vnum obj sword 5

would return all objects of the sword type (NOT named sword but TYPE of a sword) that are level 5

include optional type to get all level 5 items... or optional level to give all swords

Alixandra commented 14 years ago

mwhere where one but not both are optional

mwhere level 5 -- returns all level 5 mobs mwhere mob Bob -- returns all mobs with name Bob mwhere mob Bob level 5 - returns all mobs with name Bob who are level 5

Similar version for owhere command.

bbailey commented 14 years ago

The olevel and mlevel commands are accessible now, which provide most of the above functionality.

olevel [name] - "olevel 5" "olevel 10 coif" mlevel - "mlevel 5"

mlevel needs to be expanded to allow for keyword/name searching and then we should be done