Files
HeroesStone_PRC8/_module/nss/xx_travel_land.nss
Jaysyn904 1eefc84201 Initial Commit
Initial Commit.
2025-09-14 15:40:46 -04:00

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"));
}