%isEquipmentLocation()

Aliases%isEquipmentLocation( ), %isEqLocation()
Parameters@name

    Returns 1 if the given @location is a valid equipment location; otherwise
returns 0. The following are valid location names:

light arms
lFinger shield
leftFinger about
left finger waist
rFinger lWrist
rightFinger leftWrist
right finger left wrist
neck1 rWrist
neck 1 rightWrist
neck2 right wrist
neck 2 wield
body wielded
head wielding
legs held
feet hold
hands holding

Example:

if( !%isEquipmentLocation( @input ) )
{
%echoTo( "That's not a valid equipment location.", @actor )
}
else
{
//
// Move @item into the given location on @target mobile.
//
%move( @item, @target, @input )
}
endif