Page MenuHomeFeedback Tracker
Feed Advanced Search

Today

Goose416 created T193329: Abram’s Gunner Camera Bug.
Sun, Jul 13, 2:34 AM · Arma Reforger Modding
Goose416 added a comment to T193327: Bradley Inaccurate Data.

.

Sun, Jul 13, 2:29 AM · Arma Reforger Modding
Goose416 created T193327: Bradley Inaccurate Data.
Sun, Jul 13, 2:29 AM · Arma Reforger Modding

Yesterday

runekn created T193317: SCR_ScenarioFrameworkSystem.ShowHint documentation inconsistency.
Sat, Jul 12, 7:39 PM · Arma Reforger Modding

Fri, Jul 11

DRBLAZE created T193289: Colonel and General insignias not showing.
Fri, Jul 11, 6:13 PM · Arma Reforger Modding
CherryC0p created T193288: World Editor not properly saving Variants class for Prefabs resulting in Textures swapping.
Fri, Jul 11, 6:08 PM · Arma Reforger Modding

Thu, Jul 10

legend added a comment to T192593: Arma Reforger Tools Failure To Start..

This problem is still relevant, deleting armareforgertools from the registry editor helped me

Thu, Jul 10, 10:14 PM · Arma Reforger Modding
Geez changed the status of T193242: SCR_ScenarioFrameworkSlot does not move child mesh of spawned entity in workbench viewport from New to Assigned.
Thu, Jul 10, 10:49 AM · Arma Reforger Modding

Wed, Jul 9

runekn created T193242: SCR_ScenarioFrameworkSlot does not move child mesh of spawned entity in workbench viewport.
Wed, Jul 9, 10:31 PM · Arma Reforger Modding
mokdevel edited Steps To Reproduce on T193209: JsonApiStruct: Vector value with integers fails to load.
Wed, Jul 9, 2:59 PM · Arma Reforger Modding
SaMatra updated the task description for T193224: Auto indentation on line breaks stops working due to some unicode symbols.
Wed, Jul 9, 12:12 PM · Arma Reforger Modding
Geez changed the status of T193224: Auto indentation on line breaks stops working due to some unicode symbols from New to Assigned.
Wed, Jul 9, 11:53 AM · Arma Reforger Modding
Geez changed the status of T193209: JsonApiStruct: Vector value with integers fails to load from New to Assigned.
Wed, Jul 9, 11:52 AM · Arma Reforger Modding
Geez edited projects for T193209: JsonApiStruct: Vector value with integers fails to load, added: Arma Reforger Modding; removed Arma Reforger.
Wed, Jul 9, 11:52 AM · Arma Reforger Modding
jessicakarlyt1 added a comment to T193224: Auto indentation on line breaks stops working due to some unicode symbols.
Wed, Jul 9, 9:07 AM · Arma Reforger Modding
SaMatra created T193224: Auto indentation on line breaks stops working due to some unicode symbols.
Wed, Jul 9, 6:58 AM · Arma Reforger Modding

Mon, Jul 7

Geez changed the status of T193128: [Feature request] Add trigger shapes to SCR_ScenarioFrameworkPluginTrigger from New to Feedback.
Mon, Jul 7, 3:03 PM · Arma Reforger Modding
Geez changed the status of T193122: Improve support for template classes as attribute type from New to Assigned.
Mon, Jul 7, 3:02 PM · Arma Reforger Modding

Sat, Jul 5

runekn created T193128: [Feature request] Add trigger shapes to SCR_ScenarioFrameworkPluginTrigger.
Sat, Jul 5, 9:53 AM · Arma Reforger Modding

Fri, Jul 4

ookexoo updated the task description for T193122: Improve support for template classes as attribute type.
Fri, Jul 4, 9:39 PM · Arma Reforger Modding
ookexoo edited Steps To Reproduce on T193122: Improve support for template classes as attribute type.
Fri, Jul 4, 9:34 PM · Arma Reforger Modding
ookexoo created T193122: Improve support for template classes as attribute type.
Fri, Jul 4, 9:32 PM · Arma Reforger Modding
Geez changed the status of T193114: The "Import Shapefile" tool should receive a scale attribute from New to Feedback.
Fri, Jul 4, 4:30 PM · Arma Reforger Modding
TilW created T193114: The "Import Shapefile" tool should receive a scale attribute.
Fri, Jul 4, 2:32 PM · Arma Reforger Modding
Geez changed the status of T193097: Request: API to get object's default material assignment (ResourceName) from given material name (or a list of source material paths) from New to Feedback.
Fri, Jul 4, 1:20 PM · Arma Reforger Modding

Thu, Jul 3

fedoraman737 added a comment to T191479: AudioSystem External Variables from custom Config don't seem to be working..

I can confirm that I am experiencing this issue on my end aswell.

Thu, Jul 3, 11:24 PM · Arma Reforger Modding
ookexoo added a comment to T171356: Expose ability to fire weapon from script.

There are some indirect approaches via character command handler to force weapon fire:

//------------------------------------------------------------------------------------------------
modded class SCR_CharacterCommandHandlerComponent : CharacterCommandHandlerComponent
{
	protected bool m_bACE_ForceWeaponFire = false;
	
	//------------------------------------------------------------------------------------------------
	override bool HandleWeaponFire(CharacterInputContext pInputCtx, float pDt, int pCurrentCommandID)
	{
		if (m_bACE_ForceWeaponFire)
		{
			if (pInputCtx.WeaponIsRaised())
				pInputCtx.SetWeaponPullTrigger(true);
				
			m_bACE_ForceWeaponFire = false;
		}
		
		return HandleWeaponFireDefault(pInputCtx, pDt, pCurrentCommandID);
	}
	
	//------------------------------------------------------------------------------------------------
	void ACE_SetCanHandleWeaponFire(bool canHandle)
	{
		m_bACE_CanHandleWeaponFire = canHandle;
	}
	
	//------------------------------------------------------------------------------------------------
	void ACE_ForceWeaponFire()
	{
		m_bACE_ForceWeaponFire = true;
	}
}

However, this approach does not work when the weapon is lowered, so it's not good for features like weapon cook-off.

Thu, Jul 3, 8:12 PM · Arma Reforger Modding
Colton1070 renamed T193097: Request: API to get object's default material assignment (ResourceName) from given material name (or a list of source material paths) from VObject::GetMaterials only returns material names, does not include full material paths. to Request: API to get object's default material assignment (ResourceName) from given material name (or a list of source material paths).
Thu, Jul 3, 7:07 PM · Arma Reforger Modding
Colton1070 created T193097: Request: API to get object's default material assignment (ResourceName) from given material name (or a list of source material paths).
Thu, Jul 3, 6:20 PM · Arma Reforger Modding
Geez merged T193075: Support for type-constrained templates into T166418: Add/Fix template restrictions via base type.
Thu, Jul 3, 3:47 PM · Arma Reforger Modding
Geez merged task T193075: Support for type-constrained templates into T166418: Add/Fix template restrictions via base type.
Thu, Jul 3, 3:47 PM · Arma Reforger Modding
ookexoo added a comment to T193075: Support for type-constrained templates.

Turns out there is already a ticket for it: T166418

Thu, Jul 3, 3:37 PM · Arma Reforger Modding
Geez changed the status of T193093: Compiler fails to instantiate custom nested templates from New to Assigned.
Thu, Jul 3, 3:31 PM · Arma Reforger Modding
ookexoo created T193093: Compiler fails to instantiate custom nested templates.
Thu, Jul 3, 3:19 PM · Arma Reforger Modding
Geez changed the status of T193075: Support for type-constrained templates from New to Feedback.
Thu, Jul 3, 12:29 PM · Arma Reforger Modding
Geez changed the status of T193071: SCR_ScenarioFrameworkTriggerEntity.OnChange parameter inconsistency from New to Assigned.
Thu, Jul 3, 12:29 PM · Arma Reforger Modding
ookexoo added a comment to T193075: Support for type-constrained templates.

I just realized that there is technically already a syntax for it the code base:

class SCR_Sorting<Class T, SCR_SortCompare TCompare>
{
...

but it doesn't seem to be enforced, as the example below still compiles:

class WrongClass
{
	static int Compare(Managed left, Managed right);
}
Thu, Jul 3, 1:24 AM · Arma Reforger Modding

Wed, Jul 2

ookexoo added a comment to T192289: Improve parser for mission header.

Thanks for the reply. Looks promising!

Changes were made so that type in JSON is basically cast into script variables if possible.

Does this mean that parsing for other types that defvalue supports will also work?
Like "VETERAN" for EAISkill or "0 1 0" for vector or "0 1 0 1" for Color?

Wed, Jul 2, 11:43 PM · Arma Reforger Modding
ookexoo created T193075: Support for type-constrained templates.
Wed, Jul 2, 11:30 PM · Arma Reforger Modding
ookexoo added a comment to T166279: Cannot inherit templates.

modded also doesn't work:

class test_base<Class T> {};
modded class test_base<Class T> {}; // Throws error
Wed, Jul 2, 11:04 PM · Arma Reforger Modding
runekn updated the task description for T193071: SCR_ScenarioFrameworkTriggerEntity.OnChange parameter inconsistency.
Wed, Jul 2, 8:59 PM · Arma Reforger Modding
runekn created T193071: SCR_ScenarioFrameworkTriggerEntity.OnChange parameter inconsistency.
Wed, Jul 2, 8:58 PM · Arma Reforger Modding
DarkWolf added a comment to T192289: Improve parser for mission header.

Hello there, issue should be internally fixed but not sure when exactly it will be released. Probably in some next major update.
I will keep the ticket open until it is released so be sure that there are no other issues afterwards,

Wed, Jul 2, 11:29 AM · Arma Reforger Modding

Tue, Jul 1

R34P3R added a comment to T192567: Dedicated servers keep crashing since 1.4.

Tue, Jul 1, 8:36 AM · Arma Reforger Modding

Mon, Jun 30

DarkWolf claimed T192289: Improve parser for mission header.
Mon, Jun 30, 1:10 PM · Arma Reforger Modding
Geez closed T192961: Mod broken on Backend/Workshop after updating. as Resolved.
Mon, Jun 30, 10:29 AM · Arma Reforger Modding

Sun, Jun 29

R34P3R updated subscribers of T192961: Mod broken on Backend/Workshop after updating..

@Geez, Hi this can be closed, after 60min the update on all servers worked. Maybe the workshop was not ready yet or had todo some background work. I can not close tickets by myself :-( Have a nice week.

Sun, Jun 29, 10:25 AM · Arma Reforger Modding

Sat, Jun 28

R34P3R created T192961: Mod broken on Backend/Workshop after updating..
Sat, Jun 28, 11:12 PM · Arma Reforger Modding

Fri, Jun 27

aivonn added a comment to T192852: Uploading/updating Image preview and screenshots stopped working for everyone..
Fri, Jun 27, 7:33 AM · Arma Reforger Modding
TTVZabariYarin added a comment to T192852: Uploading/updating Image preview and screenshots stopped working for everyone..

Fixed, can close, thank you!

Fri, Jun 27, 2:24 AM · Arma Reforger Modding

Wed, Jun 25

Geez changed the status of T192852: Uploading/updating Image preview and screenshots stopped working for everyone. from New to Assigned.
Wed, Jun 25, 11:28 AM · Arma Reforger Modding
Geez changed the status of T192859: Projectile entity - add ability to override Projectile Model and Cartridge Model materials from New to Assigned.
Wed, Jun 25, 11:26 AM · Arma Reforger Modding
Geez changed the status of T192867: Collider ISSUE from New to Assigned.
Wed, Jun 25, 11:25 AM · Arma Reforger Modding
38421998 created T192867: Collider ISSUE.
Wed, Jun 25, 4:11 AM · Arma Reforger Modding

Tue, Jun 24

Socrates created T192859: Projectile entity - add ability to override Projectile Model and Cartridge Model materials.
Tue, Jun 24, 8:14 PM · Arma Reforger Modding
TTVZabariYarin created T192852: Uploading/updating Image preview and screenshots stopped working for everyone..
Tue, Jun 24, 4:31 PM · Arma Reforger Modding

Mon, Jun 23

R34P3R added a comment to T192567: Dedicated servers keep crashing since 1.4.

Mon, Jun 23, 10:58 PM · Arma Reforger Modding
Cyborgmatt added a comment to T189969: [1.3.0.102] Workbench 'Publish to Workshop' Menu Does Not Refresh Mod Information When Switching Mods.

Hi @DarkWolf, most of the issues have been resolved, but the contributor box still resets every time the publish menu is opened.

Mon, Jun 23, 4:02 PM · Arma Reforger Modding
Geez changed the status of T192816: Alt-Tabbing to script editor freezes the script editor when high amount of mods loaded from New to Assigned.
Mon, Jun 23, 3:03 PM · Arma Reforger Modding

Sun, Jun 22

GlutenFreeVapes created T192816: Alt-Tabbing to script editor freezes the script editor when high amount of mods loaded.
Sun, Jun 22, 8:24 PM · Arma Reforger Modding

Fri, Jun 20

Geez added a comment to T192763: Physics/Collision issue on underground structure.

It does mean that your feedback/suggestion/request is forwarded to the dev team and will be considered.

Fri, Jun 20, 2:49 PM · Arma Reforger Modding
R34P3R updated subscribers of T192763: Physics/Collision issue on underground structure.

@Geez Just for my knowlage, feedback means i can not hope for a fix and should delete the already created work?

Fri, Jun 20, 2:45 PM · Arma Reforger Modding
Geez changed the status of T192763: Physics/Collision issue on underground structure from New to Feedback.
Fri, Jun 20, 12:44 PM · Arma Reforger Modding
Geez changed the status of T192762: Engine limitation WaterEraser from New to Feedback.
Fri, Jun 20, 12:43 PM · Arma Reforger Modding
R34P3R created T192763: Physics/Collision issue on underground structure.
Fri, Jun 20, 11:43 AM · Arma Reforger Modding
R34P3R created T192762: Engine limitation WaterEraser.
Fri, Jun 20, 10:51 AM · Arma Reforger Modding

Wed, Jun 18

P4X added a comment to T192593: Arma Reforger Tools Failure To Start..

That was the full log, there wasnt much in the file, I can upload the actual file if you want.
As far as OneDrive, I did disable one drive sync throughout all my folders.

Wed, Jun 18, 1:00 PM · Arma Reforger Modding
Geez changed the status of T192681: Enforce Script should support the 0b prefix from New to Feedback.
Wed, Jun 18, 11:59 AM · Arma Reforger Modding
Geez changed the status of T192690: Sit on Benches from New to Feedback.
Wed, Jun 18, 11:31 AM · Arma Reforger Modding
Geez added a comment to T192593: Arma Reforger Tools Failure To Start..

Also we would suggest to avoid using workbench with onedrive active folders.
Both for the mods and the workbench directories as that could be causing the problem

Wed, Jun 18, 11:31 AM · Arma Reforger Modding
Geez added a comment to T192593: Arma Reforger Tools Failure To Start..

Hello, is this the full log? In case feedback tracker cuts off the log, please upload the whole file here rather than copy paste text

Wed, Jun 18, 11:25 AM · Arma Reforger Modding
Geez changed the status of T191620: cant update mods from Need More Info to Reviewed.
Wed, Jun 18, 10:46 AM · Arma Reforger Modding

Tue, Jun 17

P4X added a comment to T192593: Arma Reforger Tools Failure To Start..

I would also like to add I have tried deleting everything Arma related out of Windows Registry at this point, as some has said that fixed it for them. It did not in my case.

Tue, Jun 17, 11:48 PM · Arma Reforger Modding
Panter777 created T192690: Sit on Benches.
Tue, Jun 17, 9:39 PM · Arma Reforger Modding
tateshigh added a comment to T191620: cant update mods.

I have found sort of a workaround. I have another computer in my house that is hardwired (Ethernet) the one that gives me the error is on WiFi. I'm not sure if this has anything to do with it... But I logged into steam, cloned the git repo for my mod, it uploaded the first time 👑 I still really hope to solve it this as my other computer is like a home theater and doesn't have a desk I can work at

Tue, Jun 17, 8:17 PM · Arma Reforger Modding
TilW created T192681: Enforce Script should support the 0b prefix.
Tue, Jun 17, 6:34 PM · Arma Reforger Modding
Geez changed the status of T192658: [Feature Request] (SCR_AmbientVehicleSpawnPointComponent) Allow selection of a specific vehicle for this component from New to Feedback.
Tue, Jun 17, 2:50 PM · Arma Reforger Modding
Geez changed the status of T192656: [Feature Request] Show that the car will not be created if the coordinates are not suitable from New to Feedback.
Tue, Jun 17, 2:50 PM · Arma Reforger Modding

Mon, Jun 16

P4X added a comment to T192593: Arma Reforger Tools Failure To Start..

Here's the latest console log:

Mon, Jun 16, 11:59 PM · Arma Reforger Modding
PR9INICHEK created T192658: [Feature Request] (SCR_AmbientVehicleSpawnPointComponent) Allow selection of a specific vehicle for this component.
Mon, Jun 16, 9:24 PM · Arma Reforger Modding
PR9INICHEK created T192656: [Feature Request] Show that the car will not be created if the coordinates are not suitable.
Mon, Jun 16, 9:17 PM · Arma Reforger Modding
tateshigh added a comment to T191620: cant update mods.

people on my team can upload the same mod no issue, i cant figure out what the problem is, im almost ready to uninstall :( i bet its something so dumb like a fucking vpn on my browser >:( it only seems to happen when i upload textures over 1mb but im not 100% sure

Mon, Jun 16, 5:30 PM · Arma Reforger Modding
Geez changed the status of T192593: Arma Reforger Tools Failure To Start. from New to Need More Info.

Hello P4X.
Please go to documents > mygames > Arma Reforger Workbench > logs, and send us the latest one where it failed. Console.log file
Thank you.

Mon, Jun 16, 1:08 PM · Arma Reforger Modding
Geez changed the status of T192618: Slow Mod downloads on console from New to Feedback.
Mon, Jun 16, 1:04 PM · Arma Reforger Modding
R34P3R added a comment to T192567: Dedicated servers keep crashing since 1.4.

Mon, Jun 16, 9:41 AM · Arma Reforger Modding

Sat, Jun 14

cronzzz added a comment to T192618: Slow Mod downloads on console.
Sat, Jun 14, 5:44 PM · Arma Reforger Modding
cronzzz added a comment to T192618: Slow Mod downloads on console.
Sat, Jun 14, 5:44 PM · Arma Reforger Modding
cronzzz created T192618: Slow Mod downloads on console.
Sat, Jun 14, 5:43 PM · Arma Reforger Modding

Jun 13 2025

P4X created T192593: Arma Reforger Tools Failure To Start..
Jun 13 2025, 2:47 AM · Arma Reforger Modding

Jun 12 2025

Geez changed the status of T192567: Dedicated servers keep crashing since 1.4 from New to Assigned.
Jun 12 2025, 11:30 AM · Arma Reforger Modding
R34P3R created T192567: Dedicated servers keep crashing since 1.4.
Jun 12 2025, 9:50 AM · Arma Reforger Modding

Jun 10 2025

cahnour added a comment to T192257: Unable to add contributors to mod project.

Not sure what was causing this, but commenting on this again because I miraculously was able to finally publish with the addition of adding a contributor. Didn't change anything. Since I made this ticket, the user was also having issues publishing mods of his own without any contributors, but that seems to have been fixed too! Wish I could give more insight as to why this now works, just happy it does now.

Jun 10 2025, 4:11 PM · Arma Reforger Modding
Geez closed T168763: CharacterControllerComponent::TakeGadgetInLeftHand edge case on same frame take to hand as pickup as Resolved.
Jun 10 2025, 1:54 PM · Arma Reforger Modding
Geez changed the status of T192519: Critical Bug: Server Crash Due to Admin Login Loop (ScriptInvoker Error) from New to Assigned.
Jun 10 2025, 12:21 PM · Arma Reforger Modding
Yazed created T192519: Critical Bug: Server Crash Due to Admin Login Loop (ScriptInvoker Error).
Jun 10 2025, 1:21 AM · Arma Reforger Modding

Jun 9 2025

Geez changed the status of T192456: In future titles, the AI groups character array should consist of containers, not resource names. from New to Feedback.
Jun 9 2025, 2:14 PM · Arma Reforger Modding

Jun 8 2025

TilW updated the task description for T192456: In future titles, the AI groups character array should consist of containers, not resource names..
Jun 8 2025, 10:43 PM · Arma Reforger Modding

Jun 7 2025

TilW created T192456: In future titles, the AI groups character array should consist of containers, not resource names..
Jun 7 2025, 3:15 PM · Arma Reforger Modding

Jun 5 2025

The_Big_Yaz created T192416: RHS Content Pack 1 update won’t install on PS5 due to storage issue.
Jun 5 2025, 11:17 PM · Arma Reforger Modding

Jun 4 2025

ookexoo added a comment to T192290: Math::RandomFloat01 should exclude 1.

Fair enough. I stick to your suggestion then, thanks!

Jun 4 2025, 3:45 PM · Arma Reforger Modding