generated from Jaysyn/ModuleTemplate
26 lines
596 B
Plaintext
26 lines
596 B
Plaintext
// Travel Builder
|
|
|
|
// Present travel shortcut option menu
|
|
|
|
// Author : Proleric
|
|
|
|
// This is an example of how to present a travel shortcut option menu
|
|
// in conversation for a network called "Land".
|
|
|
|
// See conversation xx_travel_menu for illustration.
|
|
|
|
// In this example, we accept the default that the current node is listed as
|
|
// a travel option. On land, this can be useful, for jumping back
|
|
// to a fixed point in a large area.
|
|
|
|
// Modified : 13-Mar-2007
|
|
|
|
#include "bh_travel_inc"
|
|
|
|
void main()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
|
|
AssignCommand(oPC, bhtTravelOptionMenu(oPC, "Land"));
|
|
}
|