Files
MissionTemplate/AJ_CBRN_V2/functions/fn_chemicalAlarm.sqf
2024-06-15 16:40:10 -07:00

12 lines
322 B
Plaintext

//chemical detector audible warning of lethal levels of contamianation
//gets triggered when activating chemical trigger
//turns off when exiting the chemical trigger
while { true } do {
if ("ChemicalDetector_01_watch_F" in (assignedItems player)) then {
// play the sound
playSound "chemical_alarm";
};
sleep 5;
};