14 lines
200 B
Plaintext
14 lines
200 B
Plaintext
void main()
|
|
{
|
|
|
|
object oPC = GetPCSpeaker();
|
|
|
|
AssignCommand(oPC, ClearAllActions());
|
|
|
|
object oTarget;
|
|
oTarget = GetWaypointByTag("blackhillsship");
|
|
|
|
AssignCommand(oPC, ActionJumpToObject(oTarget));
|
|
|
|
}
|