19 lines
334 B
Plaintext
19 lines
334 B
Plaintext
void main()
|
|
{
|
|
object oPC = GetLastOpenedBy();
|
|
object oTarget;
|
|
location lTarget;
|
|
|
|
if(!GetIsPC(oPC)) return;
|
|
|
|
if (GetLocalInt(oPC, "IMemberA")<= 0)
|
|
{
|
|
oTarget = GetWaypointByTag("home");
|
|
lTarget = GetLocation(oTarget);
|
|
|
|
AssignCommand(oPC, ClearAllActions());
|
|
AssignCommand(oPC, ActionJumpToLocation(lTarget));
|
|
}
|
|
|
|
}
|