generated from Jaysyn/ModuleTemplate
23 lines
410 B
Plaintext
23 lines
410 B
Plaintext
// Travel Builder
|
|
|
|
// Present travel shortcut option menu
|
|
|
|
// Author : Proleric
|
|
|
|
// This is an example of how to export the PC's network position to a data base.
|
|
|
|
// Modified : 27-Mar-2007
|
|
|
|
#include "bh_travel_inc"
|
|
|
|
void main()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
|
|
bhtExportTravelDataBase(oPC, "bhTravel");
|
|
|
|
// For demo purposes only, we then restart the module.
|
|
|
|
StartNewModule(GetModuleName());
|
|
}
|