the parameter array mineWireEnd does not work as expected, it is not actually a possition but the reather a distance in the Y axis from the mineWireStart array from what i observed.
This is the A3 Vanilla WireTrigger class in cfgMineTriggers, the mineWireEnd position should be 3m from the mineWireStart position on the X axis.
class WireTrigger: Default { mineTriggerType = "wire"; restrictZoneCenter[] = {0.1,0,0}; restrictZoneRadius = 3.0; mineWireStart[] = {-1.4,0.1,0.0}; mineWireEnd[] = {1.6,0.1,0.0}; mineTriggerMass = 14; };
You can see that it does not do that, and it's not that the p3d would be rotated in the wrong direction, there is literally no way to bring the mineWireEnd position on the X axis it only moves in the Y axis away from the mineWireStart position.