25 lines
645 B
Plaintext
25 lines
645 B
Plaintext
void main()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
SetLocalInt(oPC, "sw_hw", 0);
|
|
SetLocalInt(oPC, "sw_dr", 0);
|
|
SetLocalInt(oPC, "sw_bl", 0);
|
|
SetLocalInt(oPC, "sw_pf", 0);
|
|
SetLocalInt(oPC, "sw_df", 0);
|
|
SetLocalInt(oPC, "sw_pm", 0);
|
|
SetLocalInt(oPC, "sw_bm", 0);
|
|
SetLocalInt(oPC, "sw_lm", 0);
|
|
SetLocalInt(oPC, "sw_ll", 0);
|
|
SetLocalInt(oPC, "sw_xx", 0);
|
|
SetLocalInt(oPC, "hw_on", 0);
|
|
SetLocalInt(oPC, "dr_on", 0);
|
|
SetLocalInt(oPC, "bl_on", 0);
|
|
SetLocalInt(oPC, "pf_on", 0);
|
|
SetLocalInt(oPC, "df_on", 0);
|
|
SetLocalInt(oPC, "pm_on", 0);
|
|
SetLocalInt(oPC, "bm_on", 0);
|
|
SetLocalInt(oPC, "lm_on", 0);
|
|
SetLocalInt(oPC, "ll_on", 0);
|
|
SetLocalInt(oPC, "xx_on", 0);
|
|
}
|