Rune_PRC8/_module/nss/lara_hostessport.nss

14 lines
365 B
Plaintext
Raw Normal View History

2024-09-13 09:10:39 -04:00
#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"))));
}
}