LoD_PRC8/_module/nss/baf_boxumu.nss

20 lines
390 B
Plaintext
Raw Normal View History

2023-09-21 21:20:34 -04:00
void main()
{
if(GetLocalInt(OBJECT_SELF, "SOI") == 0)
{
SetLocalInt(OBJECT_SELF, "SOI", 1);
PlaySound("al_pl_x2tablalp");
PlaySound("as_pl_chantingm2");
DelayCommand(8.0, PlaySound("as_pl_chantingm2"));
DelayCommand(16.0, PlaySound("as_pl_chantingm2"));
DelayCommand(30.0, SetLocalInt(OBJECT_SELF, "SOI", 0));
}
}