Amon_PRC8/_module/nss/falgarathpit.nss
Jaysyn904 c5cffc37af Initial Commit
Initial Commit [v1.01]
2025-04-03 19:00:46 -04:00

13 lines
426 B
Plaintext

void main()
{
object oPC=(GetEnteringObject());
SendMessageToPC(oPC, "The Floor has given way! You have fallen into a trap!");
FadeToBlack(oPC, FADE_SPEED_MEDIUM);
object oTarget = GetObjectByTag("RockCrumblesCaveSmall");
SoundObjectPlay(oTarget);
object oTarget2 = GetWaypointByTag("FalgarathPit");
DelayCommand(3.0, AssignCommand(oPC, JumpToObject(oTarget2)));
DelayCommand(10.0, FadeFromBlack(oPC, FADE_SPEED_SLOWEST));
}