Suggestion General Please make managed_core_parameters moddable

Users who are viewing this thread

Many many mods modify this to improve the performance of spears, but the only way to do this is to replace the vanilla file.
Since replacing vanilla files is extremely poor practice, could TW please consider making this XML file moddable?

I understand that scripts could address this, but it seems to be one of the last remaining XML files that are not moddable.
 
It is moddable iirc ? In your ModuleData folder you need to have a project.MBPROJ file + a referred xml file (your modified managed_core_parameters document) in it.

---
Best regards and keep up the good work with your mods!
 
@Philozoraptor, don't you in RBM have your tweaked managed_core_parameters file that modifies the spears stuff with a call through the project file?
Ofcourse:

this is how my project looks like

<?xml version="1.0" encoding="utf-8"?>
<base xmlns:mad:si="http://www.w3.org/2001/XMLSchema-instance" xmlns:mad:sd="http://www.w3.org/2001/XMLSchema" type="solution">
<outputDirectory>..\MBModule\MBModule\</outputDirectory>
<XMLDirectory>..\WOTS\Modules\RealisticBattleCombatModule\</XMLDirectory>
<ModuleAssemblyDirectory>..\WOTS\bin\</ModuleAssemblyDirectory>
<file id="soln_combat_system" name="ModuleData/native_parameters_tweaks.xml" type="native_parameters" />
<file id="soln_item_holsters" name="ModuleData/bow_shields.xml" type="item_holster" />
<file id="soln_combat_system" name="ModuleData/spear_combat_parameters.xml" type="animation_combat_parameters" />
<file id="soln_managed_core_paramaters" name="ModuleData/spear_managed_core_paramaters.xml" type="managed_core_parameters" />
</base>

spear_managed_core_paramaters.xml is name of mine modded file
 
Ofcourse:

this is how my project looks like

<?xml version="1.0" encoding="utf-8"?>
<base xmlns:mad:si="http://www.w3.org/2001/XMLSchema-instance" xmlns:mad:sd="http://www.w3.org/2001/XMLSchema" type="solution">
<outputDirectory>..\MBModule\MBModule\</outputDirectory>
<XMLDirectory>..\WOTS\Modules\RealisticBattleCombatModule\</XMLDirectory>
<ModuleAssemblyDirectory>..\WOTS\bin\</ModuleAssemblyDirectory>
<file id="soln_combat_system" name="ModuleData/native_parameters_tweaks.xml" type="native_parameters" />
<file id="soln_item_holsters" name="ModuleData/bow_shields.xml" type="item_holster" />
<file id="soln_combat_system" name="ModuleData/spear_combat_parameters.xml" type="animation_combat_parameters" />
<file id="soln_managed_core_paramaters" name="ModuleData/spear_managed_core_paramaters.xml" type="managed_core_parameters" />
</base>

spear_managed_core_paramaters.xml is name of mine modded file
I tried this before but it does work on my mod.

you can see in my project file that its currently uncommented since its not working. I mainly change the following:

MakesRearAttackDamageThreshold
ThrustCombatSpeedGraphZeroProgressValue
StunPeriodAttackerThrust

all these tweaks are not working when calling it using myproj file.
 
Ofcourse:

this is how my project looks like

<?xml version="1.0" encoding="utf-8"?>
<base xmlns:mad:si="http://www.w3.org/2001/XMLSchema-instance" xmlns:mad:sd="http://www.w3.org/2001/XMLSchema" type="solution">
<outputDirectory>..\MBModule\MBModule\</outputDirectory>
<XMLDirectory>..\WOTS\Modules\RealisticBattleCombatModule\</XMLDirectory>
<ModuleAssemblyDirectory>..\WOTS\bin\</ModuleAssemblyDirectory>
<file id="soln_combat_system" name="ModuleData/native_parameters_tweaks.xml" type="native_parameters" />
<file id="soln_item_holsters" name="ModuleData/bow_shields.xml" type="item_holster" />
<file id="soln_combat_system" name="ModuleData/spear_combat_parameters.xml" type="animation_combat_parameters" />
<file id="soln_managed_core_paramaters" name="ModuleData/spear_managed_core_paramaters.xml" type="managed_core_parameters" />
</base>

spear_managed_core_paramaters.xml is name of mine modded file

Interesting, where did you come up with managed_core_parameters for type? I'm assuming you pulled it directly from the XML file.
I've tried this in the past, but unless native actually called it out, I did not have success.

I didn't see anything related to this in the native project.mbproj (looking at it now).

I'll give it a go, thank you both!
If it works I will report back later
 
Interesting, where did you come up with managed_core_parameters for type? I'm assuming you pulled it directly from the XML file.
I've tried this in the past, but unless native actually called it out, I did not have success.

I didn't see anything related to this in the native project.mbproj (looking at it now).

I'll give it a go, thank you both!
If it works I will report back later
Not sure, either some sort of experimenting or I saw it done in some other mod.
 
Back
Top Bottom