2016-07-14 14:16:53 +00:00
|
|
|
|
|
|
|
class CfgSFX {
|
2017-07-08 14:52:25 +00:00
|
|
|
class GVAR(CookOff_low) {
|
|
|
|
name = QGVAR(cookoff_low);
|
|
|
|
sound[] = {QPATHTOF(sounds\cookoff_low_pressure.ogg),6,1,400,1,0,0,0};
|
|
|
|
sounds[] = {"sound"};
|
2017-06-02 21:20:36 +00:00
|
|
|
titles[] = {};
|
2016-07-14 14:16:53 +00:00
|
|
|
empty[] = {"",0,0,0,0,0,0,0};
|
|
|
|
};
|
2017-07-08 14:52:25 +00:00
|
|
|
class GVAR(CookOff_mid): GVAR(CookOff_low) {
|
|
|
|
name = QGVAR(cookoff_mid);
|
|
|
|
sound[] = {QPATHTOF(sounds\cookoff_mid_pressure.ogg),6,1,400,1,0,0,0};
|
|
|
|
};
|
|
|
|
class GVAR(CookOff_high): GVAR(CookOff_low) {
|
|
|
|
name = QGVAR(cookoff_high);
|
|
|
|
sound[] = {QPATHTOF(sounds\cookoff_high_pressure.ogg),6,1,400,1,0,0,0};
|
|
|
|
};
|
2016-07-14 14:16:53 +00:00
|
|
|
};
|