20 lines
335 B
Plaintext
20 lines
335 B
Plaintext
|
void main()
|
||
|
{
|
||
|
object oPC = GetLastOpenedBy();
|
||
|
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));
|
||
|
}
|
||
|
|
||
|
}
|