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