9 lines
205 B
Plaintext
9 lines
205 B
Plaintext
|
|
||
|
void main()
|
||
|
{
|
||
|
object oPC = GetLastSpeaker();
|
||
|
object oTarget = GetWaypointByTag("Xerxov"); //or whatever the tag is for your destination waypoint
|
||
|
AssignCommand(oPC, JumpToObject(oTarget));
|
||
|
}
|
||
|
|