First of all... This is a big mess for being such a small mod. You should concentrate on doing subfolders on your items till' you get more actors and weapons.
But anyway.. Heres whats wrong with your mod:
1. As that dude ^ Stated, Your defining a jetpack that doesn't even exist... (!!!Main Reason why it's crashing!!!) Also your loading the sound twice (Which doesn't make any problems at all but its not professional
) .
2. You defined your materials everytime the code asked for it. Which is a huge mess... You should index your materials with an index number that isn't used.
For example you wrote:
Code:
AtomGroup = AtomGroup
AutoGenerate = 1
Material = Material
CopyOf = Military Stuff
InstanceName = Cylianium Metal
Bounce = 0.01
Friction = 0.5
StructuralIntegrity = 110
DensityKGPerVolumeL = 8.5
GibImpulseLimitPerVolumeL = 2100
GibWoundLimitPerVolumeL = 11.45
Resolution = 4
Depth = 0
When it could have been as easy as:
Code:
AtomGroup = AtomGroup
AutoGenerate = 1
Material = Material
CopyOf = Cylianium Metal
I disabled the Jetpack as for now, and took your metals and indexed them so that you can do the material stuff easier. So now all you have to do is write:
Code:
CopyOf = Cylianium Metal
CopyOf = SRRO Stuff
CopyOf = Ground Stabilizer
When you want to define that material.