Page MenuHomeFeedback Tracker
Feed Arma 3 Activity

Dec 9 2020

dedmen added a comment to T154380: lnbSetTooltip in RscListNBox only show the value of the first column defined.

Eh, is that normal that your listbox, has actually 3 columns? the right one just has empty text...

Dec 9 2020, 4:28 PM · Arma 3
dedmen changed the status of T155531: [Feature Request] New scripting command for arrays: insert/insertAt from Assigned to Feedback.
Dec 9 2020, 2:02 PM · Arma 3
h- added a comment to T155638: HoldActions fade if longer than 15 seconds.

Seems that since this is a normal addaction action it's faded out according to class CfgInGameUi -> class PlayerInfo dimmStartTime/dimmEndTime 🤔

Dec 9 2020, 1:55 PM · Arma 3
kju-PvPscene added a comment to T155265: Feature Request - Mod sorting in the launcher.

This is only relevant for the loaded/active mods, right?

Dec 9 2020, 1:41 PM · Arma 3
LouMontana closed T155528: Missing command lnbPictureRight as Resolved.

closing - https://community.bistudio.com/wiki/lnbPictureRight

Dec 9 2020, 12:47 PM · Arma 3
R3vo added a comment to T155528: Missing command lnbPictureRight.

Can be closed. Command was not documented on the biki.

Dec 9 2020, 12:36 PM · Arma 3
sumanrajput added a comment to T139150: chat missing.
Dec 9 2020, 12:33 PM · Arma 3
LouMontana closed T155644: [3DEN Bug] Entity list is empty if 3DEN is loaded for the second time as Resolved.

Fixed, only found in perf/dev branch

Dec 9 2020, 11:28 AM · Arma 3
Leopard20 updated the task description for T155644: [3DEN Bug] Entity list is empty if 3DEN is loaded for the second time.
Dec 9 2020, 11:18 AM · Arma 3
Leopard20 created T155644: [3DEN Bug] Entity list is empty if 3DEN is loaded for the second time.
Dec 9 2020, 11:13 AM · Arma 3
dedmen added a comment to T155249: Editor compositions for the independent side ignores the search.

Cannot reproduce, works fine for me on internal dev branch

Dec 9 2020, 10:31 AM · Arma 3
dedmen added a comment to T155528: Missing command lnbPictureRight.

Exists in code, for control and IDC
lnbPictureRight

Dec 9 2020, 10:26 AM · Arma 3
dedmen added a comment to T155366: Picture set with lnbSetPicture cannot be removed, only replaced.

fix maaaybe next dev, or one after

Dec 9 2020, 10:25 AM · Arma 3
dedmen added a comment to T155265: Feature Request - Mod sorting in the launcher.

sorting loaded/active mods won't be possible if their order decides the load order, which seems to be the case.

Dec 9 2020, 10:15 AM · Arma 3
dedmen added a comment to T155366: Picture set with lnbSetPicture cannot be removed, only replaced.

The IDC one was fixed, the control one wasn't

Dec 9 2020, 10:12 AM · Arma 3
sumanrajput added a comment to T127019: Game launch error.
Dec 9 2020, 7:53 AM · Arma 3
sumanrajput added a comment to T127019: Game launch error.
Dec 9 2020, 7:52 AM · Arma 3
sumanrajput added a comment to T127019: Game launch error.
Dec 9 2020, 7:52 AM · Arma 3
Creator added a comment to T155449: New event handler request HandleRemoteExec.

A useful thing that definitely needs to be added.

Dec 9 2020, 12:12 AM · Arma 3

Dec 8 2020

Freddo3000 created T155638: HoldActions fade if longer than 15 seconds.
Dec 8 2020, 5:38 PM · Arma 3
CyXaRiK created T155637: проблема со входом в дейз помогите.
Dec 8 2020, 5:02 PM · DayZ
Freddo3000 created T155636: [Feature Request] New script command: directCall.
Dec 8 2020, 4:59 PM · Arma 3
Vdauphin edited Additional Information on T155634: moveTo doesn't work for agent local to dedicated server (break BIS_fnc_animalBehaviour).
Dec 8 2020, 3:44 PM · Arma 3
Vdauphin edited Steps To Reproduce on T155634: moveTo doesn't work for agent local to dedicated server (break BIS_fnc_animalBehaviour).
Dec 8 2020, 3:22 PM · Arma 3
Vdauphin edited Steps To Reproduce on T155634: moveTo doesn't work for agent local to dedicated server (break BIS_fnc_animalBehaviour).
Dec 8 2020, 3:22 PM · Arma 3
Vdauphin created T155634: moveTo doesn't work for agent local to dedicated server (break BIS_fnc_animalBehaviour).
Dec 8 2020, 3:21 PM · Arma 3
tyl3r99 created T155631: [Feature request] Implement 3den enhanced into base game .
Dec 8 2020, 12:06 PM · Arma 3
Leopard20 updated the task description for T155628: [Feature Request] Multithreading for some commands if possible.
Dec 8 2020, 12:47 AM · Arma 3
R3vo added a comment to T155628: [Feature Request] Multithreading for some commands if possible.

Perhaps

Dec 8 2020, 12:38 AM · Arma 3
Leopard20 updated the task description for T155628: [Feature Request] Multithreading for some commands if possible.
Dec 8 2020, 12:37 AM · Arma 3
Leopard20 created T155628: [Feature Request] Multithreading for some commands if possible.
Dec 8 2020, 12:35 AM · Arma 3

Dec 7 2020

dedmen changed the status of T155531: [Feature Request] New scripting command for arrays: insert/insertAt from New to Assigned.
Dec 7 2020, 8:35 PM · Arma 3
dedmen added a comment to T155531: [Feature Request] New scripting command for arrays: insert/insertAt.
"test" insert [-1, "ab"] // "testab"
"test" insert [1, "ab"] // "tabest"
"test" insert [0, "ab"] // "abtest"
Dec 7 2020, 8:34 PM · Arma 3
dedmen added a comment to T155531: [Feature Request] New scripting command for arrays: insert/insertAt.

string insert will be padded with whitespace if you go past end

Dec 7 2020, 7:20 PM · Arma 3
dedmen added a comment to T155531: [Feature Request] New scripting command for arrays: insert/insertAt.
_array = []; 
_array insert [-1, [1,2,4]]; //[0,1,2,4]; 
_index = 0; 
_value = 0; 
_array insert [_index, [_value]]; //[0,1,2,4]; 
_index = 3; 
_value = 3; 
_array insert [_index, [_value]]; //[0,1,2,3,4]
Dec 7 2020, 7:15 PM · Arma 3
Soceris created T155618: Looter shirts with a visible scarf in first person.
Dec 7 2020, 7:14 PM · Arma 3
dedmen added a comment to T155531: [Feature Request] New scripting command for arrays: insert/insertAt.

-1 index for "at end"
you could just use append for that, but I can either just support it, or add checking and error for negative index.

Dec 7 2020, 6:52 PM · Arma 3
LouMontana closed T85987: User interface does not scale with the "Interface Size" option in display settings. as Resolved.
Dec 7 2020, 6:35 PM · Arma 3
LouMontana closed T116697: GUI scaling in the EDEN editor as Resolved.
Dec 7 2020, 6:34 PM · Arma 3
LouMontana closed T74147: Tracked vehicles get stuck on field stone walls as Resolved.
Dec 7 2020, 6:34 PM · Arma 3
LouMontana closed T78990: VSYNC - GPU coil whine if vsync "disabled", GPU will also get very hot. as Resolved.
Dec 7 2020, 6:32 PM · Arma 3
LouMontana closed T79899: Please give fire switch mode for all Titan Launchers. as Resolved.

Add with Arma 3 Tanks 1.82

Dec 7 2020, 6:32 PM · Arma 3
LouMontana closed T83895: Add scripting command to check if unit has AI enabled as Resolved.
Dec 7 2020, 6:31 PM · Arma 3
LouMontana closed T84292: Give to "ticket author" the ability to close or to mark as solved their own post in the feedback tracker. as Resolved.

am here!

Dec 7 2020, 4:16 PM · Arma 3
LouMontana closed T116778: Feature request : command enableEnvironmentPartial as Resolved.
Dec 7 2020, 4:06 PM · Arma 3
R3vo added a comment to T116778: Feature request : command enableEnvironmentPartial.
Dec 7 2020, 4:05 PM · Arma 3

Dec 5 2020

7erra created T155578: ctrlSetURL does not work with file:/// URI.
Dec 5 2020, 5:54 PM · Arma 3
R3vo edited Steps To Reproduce on T155574: Steam missions are not marked as finished.
Dec 5 2020, 4:30 PM · Arma 3
R3vo edited Steps To Reproduce on T155574: Steam missions are not marked as finished.
Dec 5 2020, 4:29 PM · Arma 3
R3vo created T155574: Steam missions are not marked as finished.
Dec 5 2020, 4:28 PM · Arma 3
Arrra added a comment to T155449: New event handler request HandleRemoteExec.

Very useful handler!

Dec 5 2020, 11:24 AM · Arma 3

Dec 4 2020

Garena added a comment to T155449: New event handler request HandleRemoteExec.

A very necessary thing that will really speed up the process of my work

Dec 4 2020, 8:46 PM · Arma 3
Welmen added a comment to T155449: New event handler request HandleRemoteExec.

Cool! It helped a lot, thanks!

Dec 4 2020, 7:42 PM · Arma 3
Grezvany13 added a comment to T77349: Control Map (type 100/101) doesn't work within control groups (type 15) properly.

I noticed the same issue, still present in v1.98 and v2.00

Dec 4 2020, 5:32 PM · Arma 3
falagor closed T155392: ENG "C" → RUS "С" as Resolved.

Thanks! We will investigate and fix this.

Dec 4 2020, 4:54 PM · Arma 3
falagor closed T155466: "Greyhawk's vectoring for approach" russian translate error as Resolved.

Thanks! We will investigate and fix this.

Dec 4 2020, 4:46 PM · Arma 3
falagor closed T155370: "Baker's out" russian translation error as Resolved.

Thanks! We will investigate and fix this.

Dec 4 2020, 4:46 PM · Arma 3
falagor closed T155371: "Should be marked with purple smoke" russian translation error as Resolved.

Thanks! We will investigate and fix this.

Dec 4 2020, 4:44 PM · Arma 3
ansin11 updated the task description for T152847: Simple Object Train Wrecks become invisible.
Dec 4 2020, 2:57 PM · Arma 3
ansin11 renamed T153091: Request: Extend ST_KEEP_ASPECT_RATIO functionality beyond ST_PICTURE from Extend ST_KEEP_ASPECT_RATIO functionality beyond ST_PICTURE to Request: Extend ST_KEEP_ASPECT_RATIO functionality beyond ST_PICTURE.
Dec 4 2020, 2:53 PM · Arma 3
Stockey added a comment to T155542: CTD - Bad Module error.

Dec 4 2020, 12:31 PM · Arma 3
Stockey created T155542: CTD - Bad Module error.
Dec 4 2020, 10:45 AM · Arma 3
Admiral666 created T155537: Client drops to and maintains 0-4 FPS after Alt-Tabbing.
Dec 4 2020, 4:39 AM · Arma 3

Dec 3 2020

Leopard20 updated the task description for T155531: [Feature Request] New scripting command for arrays: insert/insertAt.
Dec 3 2020, 5:48 PM · Arma 3
Leopard20 updated the task description for T155531: [Feature Request] New scripting command for arrays: insert/insertAt.
Dec 3 2020, 5:47 PM · Arma 3
Leopard20 renamed T155531: [Feature Request] New scripting command for arrays: insert/insertAt from [Feature Request] New scripting command for arrays: insert to [Feature Request] New scripting command for arrays: insert/insertAt.
Dec 3 2020, 5:46 PM · Arma 3
Leopard20 updated the task description for T155531: [Feature Request] New scripting command for arrays: insert/insertAt.
Dec 3 2020, 5:18 PM · Arma 3
Leopard20 updated the task description for T155531: [Feature Request] New scripting command for arrays: insert/insertAt.
Dec 3 2020, 5:18 PM · Arma 3
Leopard20 created T155531: [Feature Request] New scripting command for arrays: insert/insertAt.
Dec 3 2020, 5:11 PM · Arma 3
dedmen changed the status of T155172: Eden object "jumps" when moving mouse slowly from Assigned to Feedback.
Dec 3 2020, 4:39 PM · Arma 3
Vdauphin added a comment to T155122: markerChannel not sync for dedicated server.

Working

Dec 3 2020, 4:05 PM · Arma 3
R3vo updated the task description for T155528: Missing command lnbPictureRight.
Dec 3 2020, 3:44 PM · Arma 3
R3vo created T155528: Missing command lnbPictureRight.
Dec 3 2020, 3:43 PM · Arma 3
R3vo edited Steps To Reproduce on T155366: Picture set with lnbSetPicture cannot be removed, only replaced.
Dec 3 2020, 3:42 PM · Arma 3
R3vo added a comment to T155527: RscControlsGroup has performance issues with almost all control types.

Very similar to {T154837: Multi line text controls becomes slower the more text is in it}

Dec 3 2020, 3:31 PM · Arma 3
Leopard20 renamed T155527: RscControlsGroup has performance issues with almost all control types from RscControlsGroup has rendering issues with almost all control types to RscControlsGroup has performance issues with almost all control types.
Dec 3 2020, 3:22 PM · Arma 3
Leopard20 created T155527: RscControlsGroup has performance issues with almost all control types.
Dec 3 2020, 3:21 PM · Arma 3
LouMontana changed the status of T154710: Text does not resize to fit window of multi line edit control from Assigned to Feedback.
Dec 3 2020, 3:16 PM · Arma 3
LouMontana changed the status of T154442: rowHeight + shadow property cause shadow to be drawn incorrectly for CT_LISTBOX from Reviewed to Feedback.
Dec 3 2020, 3:15 PM · Arma 3
LouMontana changed the status of T155161: menuSetURL is not working from New to Feedback.
Dec 3 2020, 3:15 PM · Arma 3
R3vo added a comment to T155366: Picture set with lnbSetPicture cannot be removed, only replaced.

Not working in 2.01.147002. (See repro)

Dec 3 2020, 3:10 PM · Arma 3
R3vo added a comment to T155161: menuSetURL is not working.
disableSerialization;
private _ctrlMenuStrip = findDisplay 313 displayCtrl 120;
Dec 3 2020, 3:06 PM · Arma 3
R3vo added a comment to T154442: rowHeight + shadow property cause shadow to be drawn incorrectly for CT_LISTBOX.

Fix confirmed.

Dec 3 2020, 3:01 PM · Arma 3
R3vo added a comment to T154837: Multi line text controls becomes slower the more text is in it.

Fix confirmed.

Dec 3 2020, 2:59 PM · Arma 3
R3vo added a comment to T154710: Text does not resize to fit window of multi line edit control.

Fix confirmed.

Dec 3 2020, 2:54 PM · Arma 3
R3vo added a comment to T141001: Scroll height is not properly adjusted for Display3DENCopy .

Here's a workaround until the issue is fixed:

Dec 3 2020, 1:20 PM · Arma 3
Alexis_74 added a comment to T155449: New event handler request HandleRemoteExec.
In T155449#2136055, @h- wrote:

This would be useful, would be neat if it also returned what some remoteExecCalled function/command might return 🤔

Dec 3 2020, 11:39 AM · Arma 3
h- added a comment to T155449: New event handler request HandleRemoteExec.

This would be useful, would be neat if it also returned what some remoteExecCalled function/command might return 🤔

Dec 3 2020, 11:37 AM · Arma 3

Dec 2 2020

dedmen claimed T155504: magazinesAmmoFull is broken on Linux servers.
Dec 2 2020, 4:35 PM · Arma 3
severgun created T155513: Add admin command to assign all logged in players to all available slots..
Dec 2 2020, 1:17 PM · Arma 3
7erra created T155512: BIS_fnc_ORBATSetGroupParams wrong header params.
Dec 2 2020, 12:37 PM · Arma 3
Leopard20 updated the task description for T155511: [Feature Request] XXXtoAGLS position conversion commands.
Dec 2 2020, 10:44 AM · Arma 3
Leopard20 created T155511: [Feature Request] XXXtoAGLS position conversion commands.
Dec 2 2020, 10:43 AM · Arma 3
lindaperryly added a comment to T148734: Ability to define handAnim per magazine on weapons using magazine proxies.
Dec 2 2020, 9:09 AM · Arma 3
JessieAMorris created T155504: magazinesAmmoFull is broken on Linux servers.
Dec 2 2020, 1:36 AM · Arma 3

Dec 1 2020

ToxaBes added a comment to T155407: Arma 3 Dedicated server lag spike.

@FrancescoSkuya please look at my ticket -> https://feedback.bistudio.com/T155335
Issue is similar but in my case it was Type_10 (public variables).

Dec 1 2020, 12:12 PM · Arma 3
R3vo added a comment to T155482: bugs.

Does this issue also happen without mods? Can you post the log file? To find the log files see https://community.bistudio.com/wiki/Crash_Files

Dec 1 2020, 9:43 AM · Arma 3
aluisio63 added a comment to T155482: bugs.

o que fazer com esses erro por favor me ajudem sou novo no jogo comprei o pc 5 dias para jogar esse jogo muito obrigado

Dec 1 2020, 4:00 AM · Arma 3
aluisio63 created T155482: bugs.
Dec 1 2020, 3:57 AM · Arma 3
Alexis_74 added a comment to T155449: New event handler request HandleRemoteExec.

up, pls

Dec 1 2020, 2:15 AM · Arma 3