PoA_PRC8/_module/nss/bootnonmember2.nss
Jaysyn904 8d97886c3f Changed folder name.
Changed folder name.
2022-10-07 21:08:37 -04:00

23 lines
455 B
Plaintext

//Created by Genisys 5/28/08
//This script boots any non-partymember out of the party room
//Put this script OnEnter
void main()
{
object oPC = GetEnteringObject();
object oTarget;
location lTarget;
if (!GetIsPC(oPC)) return;
if (GetLocalInt(oPC, "IMemberB")<= 0)
{
oTarget = GetWaypointByTag("home");
lTarget = GetLocation(oTarget);
AssignCommand(oPC, ClearAllActions());
AssignCommand(oPC, ActionJumpToLocation(lTarget));
}
}