Page MenuHomeFeedback Tracker

Arma Reforger ModdingProject
ActivePublic

Members (3)

Watchers

  • This project does not have any watchers.

Details

Description

Space for everything related to reforger mod issues and modding requests

Powered by a brand-new Enfusion technology, Arma Reforger is an authentic Cold War military game, which allows players to battle for a sprawling mid-Atlantic island of Everon, or take a role of Game Master and create their own scenarios for other to enjoy.

New to Feedback Tracker or just not sure what to do?
Arma Reforger Feedback Tracker "How To" Guide

Recent Activity

Yesterday

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