There are many key types, and it is also possible to form more complex locks by using boolean symbols and grouping. See @lock-complex for examples.
The types of keys are outlined below. Detailed help for each is available by typing @lock-key, replacing with the word on the left.
Simple - Always true, always false, or locking to a specific object.
Name - Check the name of the object attempting to pass the lock.
Owner - Lock to objects owned by the owner of an object.
Carry - Lock to someone carrying an object, such as a key.
Indirect - Use the result of another @lock.
Attribute - Check an attribute on the object trying to pass the lock.
Evaluation - Evaluate an attribute on the object the lock is on.
Bit - Check for a flag, type, power, or channel membership.
Dbreflist - Check if the dbref of the object trying to pass the lock is in a list set in an attribute.
Host - Check for players connecting from a particular host/ip.
You can negate lock keys, and combine multiple keys, as explained in lockkeys2.
LOCK KEYS2
A lock key can be negated by prefixing the key with an ”!”. For example:
> @lock North=flag^wizard
> @lock South=!flag^wizard
only lets those with the Wizard flag pass through the North exit, while only allowing those who do NOT have the Wizard flag to go South.
You can combine keys, either allowing someone to pass a lock if they pass any of the keys given, or requiring that they pass all of the keys, using the ”|” (or) and ”&” (and) symbols. For example:
> @lock OOC Room= status:OOC | power^guest
locks the exit “OOC Room” so that only those with their STATUS attribute set to “OOC”, or those with the Guest @power, can pass, while
> @lock Men's Room= Sex:Male & +Bathroom Key
only allows those with their @sex set to Male who are carrying a “Bathroom Key” object to pass.
You can group together different sets of keys by enclosing each group in parenthesis ”()”. For instance,
You can lock an object in several different ways. The simplest lock is one that always succeeds (#true) or always fails (#false), or that matches a specific object by prefixing it with an ”=”:
> @lock My Toy = #false
This lock will always fail.
> @lock My Toy = =me
This locks the object “My Toy” to you and you alone. It is recommended that you @lock me = =me in order to prevent anyone else from picking you up. The two = signs are NOT a typo! The first is part of the @lock syntax (as shown at the top of @lock) the second is a lock key that means “only this exact object”.
For backwards compatibility, OBJID^<object> is an alias for =<object>.
@LOCK-OWNER
@LOCK-CARRY
OWNER LOCK
An “owner” lock allows you to lock something to anything owned by the same player:
@lock Box = $My Toy
This locks “Box” to anything owned by the owner of “My Toy” (since players own themselves, that includes the owner as well).
CARRY LOCK
You can lock an object to something that has to be carried:
@lock Door = +Secret Door Key
This locks the exit “Door” to someone carrying the object “Secret Door Key”. Anyone carrying that object will be able to go through the exit.
You can lock an object to -either- an object or to someone carrying the object with:
@lock Disneyworld Entrance = Child
This locks the exit “Disneyworld Entrance” to either the object “Child” -or- to someone carrying the object “Child”. (OK, so it’s a weird example.)
This is the same as @lock Entrance=+Child|=Child.
@LOCK-ATTRIBUTE
ATTRIBUTE LOCKS
You can lock an object to an attribute on the person trying to pass the lock (as long as the object can “see” that attribute):
@lock <object>=<attribute>:<value>
can contain wildcards (*), greater than (>) or less than (<) symbols.
For example:
@lock Men's Room = sex:m*
This would lock the exit “Men’s Room” to anyone with a SEX attribute starting with the letter “m”.
@lock A-F = icname:<g
This would lock the exit “A-F” to anyone with a ICNAME attribute starting with a letter “less than” the letter “g”. This assumes that ICNAME is visual or the object with the lock can see it.
@LOCK-EVALUATION
EVALUATION LOCK
An evaluation lock is set using this format:
@lock <object>=<attribute>/<value>
The difference between this and an attribute lock is that the is taken from