13 lines
250 B
Plaintext
13 lines
250 B
Plaintext
|
void main()
|
||
|
{
|
||
|
|
||
|
object oPC = GetLastUsedBy();
|
||
|
object oTarget;
|
||
|
location lTarget;
|
||
|
|
||
|
oTarget = GetWaypointByTag("SHA_ACADEMY_PT");
|
||
|
lTarget = GetLocation(oTarget);
|
||
|
AssignCommand(oPC, ClearAllActions());
|
||
|
AssignCommand(oPC, ActionJumpToLocation(lTarget));
|
||
|
}
|