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