14 lines
365 B
Plaintext
14 lines
365 B
Plaintext
#include "x2_inc_switches"
|
|
void main()
|
|
{
|
|
object oPC = GetItemActivator();
|
|
int nEvent = GetUserDefinedItemEventNumber();
|
|
if (nEvent == X2_ITEM_EVENT_ACTIVATE)
|
|
{
|
|
location lLoc = GetLocation(oPC);
|
|
SetLocalLocation(oPC, "HostessReturn", lLoc);
|
|
AssignCommand(oPC, JumpToLocation(GetLocation(GetWaypointByTag("wp_Hostess_in"))));
|
|
}
|
|
}
|
|
|