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.
20 lines
541 B
Plaintext
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"));
|
|
}
|