Installer Steam
log på
|
sprog
简体中文 (forenklet kinesisk)
繁體中文 (traditionelt kinesisk)
日本語 (japansk)
한국어 (koreansk)
ไทย (thai)
Български (bulgarsk)
Čeština (tjekkisk)
Deutsch (tysk)
English (engelsk)
Español – España (spansk – Spanien)
Español – Latinoamérica (spansk – Latinamerika)
Ελληνικά (græsk)
Français (fransk)
Italiano (italiensk)
Bahasa indonesia (indonesisk)
Magyar (ungarsk)
Nederlands (hollandsk)
Norsk
Polski (polsk)
Português (portugisisk – Portugal)
Português – Brasil (portugisisk – Brasilien)
Română (rumænsk)
Русский (russisk)
Suomi (finsk)
Svenska (svensk)
Türkçe (tyrkisk)
Tiếng Việt (Vietnamesisk)
Українська (ukrainsk)
Rapporter et oversættelsesproblem








{
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 :)