10 lines
235 B
Plaintext
10 lines
235 B
Plaintext
|
void main()
|
||
|
{
|
||
|
object oPC = GetPCSpeaker();
|
||
|
object oTarget = GetWaypointByTag("wp_southp_irda_home");
|
||
|
location lTarget = GetLocation(oTarget);
|
||
|
|
||
|
AssignCommand(oPC, ClearAllActions());
|
||
|
AssignCommand(oPC, ActionJumpToLocation(lTarget));
|
||
|
}
|