Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
{
displayName = "$STR_TFAR_Mod_SameSWFrequencies";
description = "$STR_TFAR_Mod_SameSWFrequenciesTT";
typeName = "BOOL";
defaultValue = 1; // Stef 0 = no, 1 = yes - make channels syncronized.
};
class same_lr_frequencies_for_side
{
displayName = "$STR_TFAR_Mod_SameLrFrequencies";
description = "$STR_TFAR_Mod_SameLrFrequenciesTT";
typeName = "BOOL";
defaultValue = 1; // Setf 0 = no, 1 = yes - make LR channel syncronized
};
Adding this into a .hpp file does the job... just Longrange frequency looks different for each radio i spawn.. to be precise i get the radios from an arsenal with RHS on, the shortrange is AN/PRC 152, longrange is MR3000 RHS.
EDIT:
previous stuff wasn't working so i opened the .pbo and found theese:
TF_same_lr_frequencies_for_side = true;
TF_same_sw_frequencies_for_side = true;
However global exec is not working and i found a post here https://github.com/michail-nikolaev/task-force-arma-3-radio/issues/1235 that says i've to set them into CBA setting..
add a file into the mission .pbo called as cba_settings.sqf and added those lines TF_no_auto_long_range_radio = true;
TF_give_personal_radio_to_regular_soldier = true;
TF_give_microdagr_to_soldier = false;
TF_same_sw_frequencies_for_side = true;
TF_same_lr_frequencies_for_side = true;
TF_same_dd_frequencies_for_side = true;
TF_default_radioVolume = 9;
So CBA gonna read it and sync the frequencies. About the Longrange radio, the MR3000 RHS. is not getting syncronized while the vanilla ones do.
Hope this helps :)