swatti wrote:One of those "lore-failures" that keep bugging me.
A ship known to be simply "badass" is rendered nearly toothless as it has lost its hull-shielding and its powerfull main-guns.
Basicly, im requesting a simple small mod that gives the Ragefire-turret a 5km range to give the poor Raptor some teeth against capital-ships.
Sadly my modding-skills arent good enough to do this but im sure any skilled modder can rid me this horrid lore-bloober.
Thanks

You wanna try it yourself? ;p
Kinda 'busy' right now.
If you can't handle it, i'll do it later, but i think you can manage to get it working, its not that difficult.
You seem to know the name, so we need to know what turret macro is the one we are looking for.
So open up your t file (0001-L044.xml is english) and search for ragefire.
When done you'll find out that its {20104,1901} we are looking for.
When you've activated indicated search at your windows, you just type that in the directory where you store your extracted game files and its gonna be ...
turret_medium_sp_macro.xml
which you can find here:
XR_ext_xmlOnly\assets\props\WeaponSystems\macros\turret_medium_sp_macro.xml
But thats the turret, you'll see pretty fast that this is not what we were looking for. So we gonna need the macro for the bullet files.
bullet_turret_medium_sp_macro.xml
So, you'll create a new mod directory under extensions and copy the bullet_turret_medium_sp_macro.xml in it.
Of course after you reconstructed the whole path where you found the file.
\assets\fx\weaponfx\macros\bullet_turret_medium_sp_macro.xml
Then you open up the bullet xml and delete the whole content (or comment it out, just have the original file or the old content somewhere to look up what you want to replace/add or delete).
I give you the example for the bulletspeed, rest is your job, alright? ^^
Code: Select all
<?xml version="1.0" encoding="utf-8"?>
<!-- Thats a comment -->
<!-- And <diff> says that we gonna change content. What exactly comes within -->
<diff>
<replace sel="/macros/macro/properties/bullet/@speed">
900
</replace>
<!-- here you gonna set the other replacements. :p -->
</diff>
Save, start the game, activate the mod and test it.
Tell me if you have problems and we'll fix them.