15 lines
254 B
Plaintext
15 lines
254 B
Plaintext
|
//Put this OnUsed
|
||
|
void main()
|
||
|
{
|
||
|
|
||
|
object oPC = GetLastUsedBy();
|
||
|
AssignCommand(oPC, ClearAllActions());
|
||
|
|
||
|
object oTarget = GetWaypointByTag("WP_tunnels_exit");
|
||
|
location lTarget = GetLocation(oTarget);
|
||
|
|
||
|
AssignCommand(oPC, ActionJumpToLocation(lTarget));
|
||
|
|
||
|
}
|
||
|
|