Page 4 of 4

Re: Military Fuel Injectors OXP

Posted: Sun Nov 18, 2012 10:13 pm
by Eagle1
Thanks very much Thargoid. Much appreciated.

Eagle

Re: Military Fuel Injectors OXP

Posted: Mon Nov 19, 2012 5:40 pm
by Thargoid
You're welcome. It's been on the cards for those two for a while - I was trying to iron out the effect using script (it's fairly easy to kill the backward velocity with the JS console, but for some reason doing the equivalent in script doesn't have the same effect) but I keep getting side-tracked by other matters. So it's quicker and easier all round to chop that aspect of them out.

Re: Military Fuel Injectors OXP

Posted: Thu Jul 30, 2015 2:15 pm
by Lone_Wolf
OXP Standards 1.82 wrote:
Injectors and torus

Injector and torus speeds are no longer a fixed multiple of normal flight speed. player.ship.injectorsEngaged and player.ship.torusEngaged are recommended to detect enabling of these flight modes.
in Config/script.js , line 43

Code: Select all

if(player.ship.speed == 7 * player.ship.maxSpeed) // if the ship is under fuel injection (FI is speed x 7, torus is speed x 32)

Re: Military Fuel Injectors OXP

Posted: Fri Apr 05, 2024 10:04 am
by Cholmondely
Just to post this here
(taken from Hullblazer's 2015 "Military Injectors" thread)
cim wrote: Thu Sep 24, 2015 3:29 pm
Diziet Sma wrote:
Anonymissimus wrote:
You can see the fuel bar go up a little at times, watching carefully. (Of course you don't gain any fuel still.)
That's the only way it could simulate being slightly more fuel-efficient than regular injectors.. the handwavium is that unburnt fuel gets recovered and returned to the tanks.
Now that ship.injectorBurnRate and ship.injectorSpeedFactor are available it might be worth rewriting it. This OXP was one of the ones I had in mind when making various ship properties writable for 1.82
Our current version seems to be an OXZ'ed v.1.03 (November 2012).

This could now be updated by somebody understanding javascript to have real fuel efficiency sans handwavium - and also restore the original speed boost if desired (unsure what it actually was but see below).
Thargoid wrote: Mon Jul 02, 2012 5:12 pm
It does two things

1) When you are under injectors (ie at 7x your normal max speed) you get 0.1ly of fuel back every 8s. Basically that means that you do still consume fuel, but overall at a slower rate than normal (it's the best that can be done to emulate a lower consumption injector, or in this case a fuel reclaim system).

2) When you get the refuel, your velocity is also increased by x1.2 . This will slowly decay over time, hence the dependence on the ship you're flying (or at least on its stats).

...
This might also have implications for the Vortex OXP (original source of these military fuel injectors).