11 lines
317 B
Plaintext
11 lines
317 B
Plaintext
|
void main()
|
||
|
{
|
||
|
object oPC = GetLastUsedBy();
|
||
|
object oTarget = GetWaypointByTag("wp_svirfcave_down");
|
||
|
location lTarget = GetLocation(oTarget);
|
||
|
|
||
|
AssignCommand(oPC, ClearAllActions());
|
||
|
ActionPlayAnimation(ANIMATION_PLACEABLE_OPEN);
|
||
|
DelayCommand(2.0,AssignCommand(oPC, ActionJumpToLocation(lTarget)));
|
||
|
}
|