From the NannyMUD documentation
2001-07-09
exterior - The exterior object of a transport.
/std/stationary
/std/special/transport/exterior
add_entercmd - add a command for entering the transport set_entermsg - set the message displayed when entering. set_failmsg_enter - set the message displayed when failing to enter a moving transport.
This is the object visible for the player from outside the transport.
transport in std/transport/transport
interior in std/transport/interior
NAME
add_entercmd - Add a command for entering the transport.LOCATION
/std/special/transport/exteriorSYNTAX
void add_entercmd(string command);DESCRIPTION
This function adds a command that can be used to enter the transport. One transport can have several different commands.EXAMPLE
add_entercmd("board ship");EXAMPLE
add_entercmd("enter ship");
FUNCTION
NAME
set_entermsg - Set the message displayed when entering.LOCATION
/std/special/transport/exteriorSYNTAX
void set_entermsg(string message);DESCRIPTION
This function sets the message to be displayed when someone enters the transport. It is run through std/msg.EXAMPLE
set_entermsg("\bPRON enter\b$ the coach.\n");
FUNCTION
NAME
set_failmsg_enter - Set the message displayed when failing to enter a moving transport.LOCATION
/std/special/transport/exteriorSYNTAX
void set_failmsg_enter(string message);DESCRIPTION
This function sets the message to be displayed when someone tries to enter a transport that is moving along a route, and has the no_route_enter set. The message is run through std/msg.EXAMPLE
set_failmsg_enter("\bPRON tr\b{y,ies} to enter the balloon, " + "but it is too high up in the air for " + "\bobj to reach.\n");