16 lines
550 B
Plaintext
16 lines
550 B
Plaintext
|
void main()
|
||
|
{
|
||
|
object oPC = GetLastUsedBy();
|
||
|
//PlaySound("as_dr_x2ttu3op");
|
||
|
AssignCommand(OBJECT_SELF, ActionPlayAnimation(ANIMATION_PLACEABLE_OPEN));
|
||
|
DelayCommand(1.5, PlaySound("fs_carpt_hard1"));
|
||
|
DelayCommand(1.8, PlaySound("fs_carpt_hard2"));
|
||
|
DelayCommand(2.1, PlaySound("fs_carpt_hard1"));
|
||
|
DelayCommand(2.4, PlaySound("fs_carpt_hard2"));
|
||
|
DelayCommand(2.7, PlaySound("fs_carpt_hard1"));
|
||
|
|
||
|
object oTarget = GetWaypointByTag("shrine_wp");
|
||
|
location lLocation = GetLocation(oTarget);
|
||
|
DelayCommand(2.9, AssignCommand(oPC, JumpToLocation(lLocation)));
|
||
|
}
|