武装突袭3

武装突袭3

task_force_radio
Stef 2017 年 8 月 15 日 下午 1:06
Setting default frequencies on channels
Hello! Is it possible to set same frequencies for each channel? Thanks in advance!
< >
正在显示第 1 - 6 条,共 6 条留言
Dedmen Miller  [开发者] 2017 年 8 月 16 日 上午 8:41 
yes.
Stef 2017 年 8 月 16 日 上午 8:51 
May i ask how?
Dedmen Miller  [开发者] 2017 年 8 月 16 日 上午 9:00 
Module. Dunno what it's called. Frequencies or Base module or.... One of the 3 modules.
Stef 2017 年 8 月 17 日 上午 6:22 
Thanks a lot, i'll try to make a script out of it, so i avoid making a TFAR dependency into the .sqm because of the modules... when it's done i'll post it here
Stef 2017 年 8 月 17 日 上午 6:54 
class same_sw_frequencies_for_side
{
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..
最后由 Stef 编辑于; 2017 年 8 月 17 日 上午 8:28
Stef 2017 年 8 月 17 日 上午 8:49 
So here's the final thing:
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 :)
< >
正在显示第 1 - 6 条,共 6 条留言
每页显示数: 1530 50