安装 Steam
登录
|
语言
繁體中文(繁体中文)
日本語(日语)
한국어(韩语)
ไทย(泰语)
български(保加利亚语)
Čeština(捷克语)
Dansk(丹麦语)
Deutsch(德语)
English(英语)
Español-España(西班牙语 - 西班牙)
Español - Latinoamérica(西班牙语 - 拉丁美洲)
Ελληνικά(希腊语)
Français(法语)
Italiano(意大利语)
Bahasa Indonesia(印度尼西亚语)
Magyar(匈牙利语)
Nederlands(荷兰语)
Norsk(挪威语)
Polski(波兰语)
Português(葡萄牙语 - 葡萄牙)
Português-Brasil(葡萄牙语 - 巴西)
Română(罗马尼亚语)
Русский(俄语)
Suomi(芬兰语)
Svenska(瑞典语)
Türkçe(土耳其语)
Tiếng Việt(越南语)
Українська(乌克兰语)
报告翻译问题
{
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 :)