The RSA messages are known, but they are just noise and don't actually cause any issues.
I tried to fix them but couldn't figure it out and couldn't track down why they happen, its something related to bisign validation, I know our input data into openssl is correct (or rather, the same as on windows) but it just doesn't like it.
- Queries
- Arma 3 Activity
- All Stories
- Search
- Advanced Search
Advanced Search
Mon, Mar 3
Fri, Feb 28
Thu, Feb 20
Mirror was never implemented, the wiki was wrong, and the wiki has been fixed since then.
5/6 are fixed in 2.20
Mon, Feb 17
The crash happened inside Microsofts XAudio code. Nothing we can do about that. We cannot fix Microsoft's errors.
Well I don't know either...
You have submitted 7 crashes.
Each of these is something different, and they all look random and seem to make no sense, and I have never seen any of them before.
The crashing thing seems to be some joystick that you have attached, "vJoy Device"
The crash is actually inside a windows library, nothing we can do about that. Probably just remove your joystick or gamepad.
In the rpt log I also see there are some issues with your joystick
Fri, Feb 14
It was ignored for player used weapons, not for AI.
2.20 also adds config entry for map controls
useRealViewport = 1 to enable it by default, then you don't need to use script command
Fixed in https://feedback.bistudio.com/T189016
due to backwards compatibility you need to run a command, or add a config entry to enable it.
Fixed in https://feedback.bistudio.com/T189016
due to backwards compatibility you need to run a command, or add a config entry to enable it.
Fixed in https://feedback.bistudio.com/T189016
due to backwards compatibility you need to run a command, or add a config entry to enable it.
Okey.
Due to backwards compatibility, we need to mess around a bit.
Thu, Feb 13
It is easier to see if you also change the position of the background like this
with localNamespace do { private _display = findDisplay 46 createDisplay "RscDisplayEmpty"; private _ctrlGroup = _display ctrlCreate ["RscControlsGroup", -1]; private _ctrlText = _display ctrlCreate ["RscText", -1, _ctrlGroup]; _ctrltext ctrlSetPosition [0.2, 0.2, 1, 1]; _ctrlText ctrlSetBackgroundColor [1, 0, 0, 0.5]; _ctrlText ctrlCommit 0; private _ctrlMap = _display ctrlCreate ["RscMapControl", -1, _ctrlGroup]; _ctrlMap ctrlMapSetPosition [0, 0, 0.5, 0.5]; // effect is immediate _ctrlMap ctrlMapAnimAdd [0, ctrlMapScale _ctrlMap, player]; ctrlMapAnimCommit _ctrlMap; _ctrlGroup ctrlSetPosition [0.2, 0.2, 1, 1]; _ctrlGroup ctrlCommit 0.3; // non instant transition _ctrlMap ctrlMapSetPosition []; // instant sync to new _ctrlGroup position };
You can see that when you click above the red area, the map control is moved. But clicking outside the map area, it is not.
Also the map ignores the ctrlSetPosition, it should be positioned at 0.2/0.2 from the top left. But it is rendered at 0/0
Wed, Feb 12
2.20
Is there currently some non-eventhandler script way to detect this?
Won't fix. I have no idea where to look.
Very nice find, thank you.
Wed, Feb 5
Jan 26 2025
Reporting problems is good.
Creating new, duplicated tickets, even though you're fully aware that tickets for the issue already exist, is spam.
You insulting and throwing slurs at developers, now that gets you banned. Try to behave.
Jan 21 2025
Jan 7 2025
Also btw the old script join method that pressed buttons in the server browser no longer works
Profiling branch v18 and 2.20
If server has no config file (like player hosted server) many config dependent entries will be missing.
Jan 6 2025
That is not a new bug. We're aware of it, and its unlikely to be fixed. You can play in fullscreen windowed instead.
We cannot just add RCON commands, RCON is done by BattlEye, and them adding commands and forwarding them to us is unlikely to happen at this point.
"The cloud file provider is not running."
Put that into google.
Your CPU is too old.
That issue is already fixed on profiling branch, you could switch to it to get a temporary fix until the next game update
https://community.bistudio.com/wiki/Arma_3:_Steam_Branches
Won't do
You are loading mods that require ACE and CBA mods, but you are not loading ACE or CBA mods.
Fixed in v17 tomorrow
Ah the good old optimizer.
Specifically wrote code that does it without popcnt, the optimizer detected what I was doing and replaced it with popcnt... Thank you