15 lines
237 B
Plaintext
15 lines
237 B
Plaintext
|
//Put this OnUsed
|
||
|
void main()
|
||
|
{
|
||
|
|
||
|
object oPC = GetLastUsedBy();
|
||
|
|
||
|
AssignCommand(oPC, ClearAllActions());
|
||
|
|
||
|
object oTarget;
|
||
|
oTarget = GetWaypointByTag("wp_insidetree");
|
||
|
|
||
|
DelayCommand(3.0, AssignCommand(oPC, ActionJumpToObject(oTarget)));
|
||
|
|
||
|
}
|