20 lines
588 B
Plaintext
20 lines
588 B
Plaintext
|
void main()
|
||
|
{
|
||
|
SetLocalInt(GetModule(),"KValves",0);
|
||
|
SetLocalInt(GetModule(), "WaterTrapLim", 0);
|
||
|
|
||
|
AssignCommand(OBJECT_SELF, PlaySound("as_cv_fanlg1"));
|
||
|
|
||
|
DestroyObject(GetObjectByTag("RoomFiller"));
|
||
|
DelayCommand(2.0, DestroyObject(GetObjectByTag("RoomFiller")));
|
||
|
DelayCommand(4.0, DestroyObject(GetObjectByTag("RoomFiller")));
|
||
|
DelayCommand(6.0, DestroyObject(GetObjectByTag("RoomFiller")));
|
||
|
|
||
|
DelayCommand(12.0,DestroyObject(GetObjectByTag("WaterLow")));
|
||
|
DelayCommand(10.0,DestroyObject(GetObjectByTag("WaterMed")));
|
||
|
DelayCommand(8.0,DestroyObject(GetObjectByTag("RightWaterHigh")));
|
||
|
|
||
|
|
||
|
|
||
|
}
|