15 lines
197 B
Plaintext
15 lines
197 B
Plaintext
|
void main()
|
||
|
{
|
||
|
|
||
|
object oPC = GetPCSpeaker();
|
||
|
|
||
|
AssignCommand(oPC, ClearAllActions());
|
||
|
|
||
|
object oTarget;
|
||
|
oTarget = GetWaypointByTag("wp_sport_b");
|
||
|
|
||
|
AssignCommand(oPC, ActionJumpToObject(oTarget));
|
||
|
|
||
|
}
|
||
|
|