PoA_PRC8/_module/nss/crypttrigger.nss

18 lines
276 B
Plaintext
Raw Permalink Normal View History

2022-10-07 14:20:31 -04:00
void main()
{
// Remove some gold from the player
object oDoor = GetObjectByTag ("crypt2entrance");
SetLocked(oDoor,FALSE);
AssignCommand (oDoor,ActionOpenDoor(oDoor));
object oSound = GetObjectByTag("CrankCreaksLarge");
SoundObjectPlay(oSound);
}