Battledale_PRC8/_module/nss/swt_door_clsound.nss
Jaysyn904 7b9e44ebbb Initial upload
Initial upload.  PRC8 has been added.  Module compiles, PRC's default AI & treasure scripts have been integrated.  Started work on top hak for SLA / Ability / Scripting modifications.
2024-03-11 23:44:08 -04:00

20 lines
541 B
Plaintext

//::///////////////////////////////////////////////
//:: swt_door_cls_snd
//:: swt_door_close.nss
//:: Copyright (c) 2001 Bioware Corp.
//:://////////////////////////////////////////////
/*
Door opening and closing with sound
*/
//:://////////////////////////////////////////////
//:: Created By: Pad
//:: Created On: 28-06-2002
//:://////////////////////////////////////////////
void main()
{
PlaySound("as_cv_woodcreak1");
DelayCommand(10.0, ActionCloseDoor(OBJECT_SELF));
DelayCommand(10.0, PlaySound("as_cv_woodcreak2"));
}