Made some boring areas a little more interesting to look at

This commit is contained in:
EpicValor
2023-09-30 18:37:01 -05:00
parent 03a9b5f841
commit 9387c8b6de
24 changed files with 4819 additions and 1802 deletions

View File

@@ -0,0 +1,15 @@
void main()
{
object oTarget;
// Get the creature who triggered this event.
object oPC = GetEnteringObject();
// Only fire for (real) PCs.
if ( !GetIsPC(oPC) || GetIsDMPossessed(oPC) )
return;
// Make changes to the sound object "croydecaveyells.
oTarget = GetObjectByTag("croydecaveyells");
SoundObjectStop(oTarget);
}