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