Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bug] Acre 2 issues #524

Closed
Sniperhid opened this issue Dec 8, 2014 · 1 comment
Closed

[Bug] Acre 2 issues #524

Sniperhid opened this issue Dec 8, 2014 · 1 comment
Assignees
Labels
Milestone

Comments

@Sniperhid
Copy link
Contributor

Thanks to Chairborne here for the detailed information!

148 Radio channel assignment issues - Turns out the 148 frequency assignment is broken. Independent cant hear others independent radios. Blufor seems to be uneffected.

The current code for this loops through _i = 0 to 32 and does the following:
_frequency = (500+(_i))*_offset;

I believe we can fix this by changing it to:
_frequency = (500+(_i))+_offset;

According to wikipedia the 148 can use frequencies from 30->512

Formerly the independent channel 1 would result in a frequency of 520 being given which is outside of range. Even the fixed code won't account for the later channels, I suggest we also bring down the base frequency (500) to ~479 to allow for the 32 channels. I believe this is the source of problems testing pending.


Issues with ACRE2 assignment, although everything works well enough ingame. These still happen in the rpt file (and may be the source of the repetitive beeping issue, I'll see if I can gather more information in future).

The client will get this:
19:22:04 3179.36 ACRE WARNING: Got start speaking event with non-existent radio id: ACRE_PRC343_ID_26

The server gets something like this:
2014/12/06, 19:58:47 2537.49 ACRE WARNING: Id object relation created independently of unique ID creation process (ACRE_PRC343_ID_29)

2014/12/06, 19:58:47 2537.5 ACRE WARNING: Id object relation created independently of unique ID creation process (ACRE_PRC343_ID_31)

Finally on server rpt:
2014/12/07, 1:43:26 Error in expression < 1;

[_languageKey, _languageName] call acre_sys_core_fnc_addLanguageType;>
2014/12/07, 1:43:26 Error position: <acre_sys_core_fnc_addLanguageType;>
2014/12/07, 1:43:26 Error Undefined variable in expression: acre_sys_core_fnc_addlanguagetype
2014/12/07, 1:43:26 File idi\clients\acre\addons\api\fnc_babelAddLanguageType.sqf, line 7

It would appear that acre_api_fnc_babelAddLanguageType isn't meant to be run on the server it is run in (acre2_init.sqf), I suggest double check!

@Wolfenswan Wolfenswan added the Bug label Dec 8, 2014
@headswe headswe self-assigned this Dec 10, 2014
@headswe
Copy link
Collaborator

headswe commented Dec 12, 2014

Fixed in #528

@Wolfenswan Wolfenswan added this to the F3 3-2-2 milestone Jan 8, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants