[Split] Fuel Tweaks

Discussion and information relevant to creating special missions, new ships, skins etc.

Moderators: another_commander, winston

User avatar
phkb
Impressively Grand Sub-Admiral
Impressively Grand Sub-Admiral
Posts: 4612
Joined: Tue Jan 21, 2014 10:37 pm
Location: Writing more OXPs, because the world needs more OXPs.

[Split] Fuel Tweaks

Post by phkb »

Version 1.2 of FuelTweaks OXP is now available. In this version:
  • Set the default quantity of Quirium fuel available for purchase at all stations to be zero, to encourage scooping.
  • Added the "Quirium Fuel Transfer" equipment item, to allow for fuel to be transferred from cargo to the main tank, but with a risk of cargo and/or equipment damage (and even entire ship destruction!).
  • Scooping of Quirium Fuel cargo pods when there is insufficient fuel storage units for hold it will now result in the cargo being auto-ejected.
  • Corrected logic for determining when fuel or fuel stations are available.
  • Added logic to allow for players without fuel scoops to always have the ability to purchase 4ly fuel rations, even if all other logic says no fuel or rations or fuel stations are allowed in this system.

Download: FuelTweaks.zip, or FuelTweaks.oxz
Also available through the download manager. [EliteWiki] Fuel Tweaks

Note: this OXP will not do anything on it's own. To make it do something, try the following example in a startUp script:

Code: Select all

this.startUp = function() {
	var ft = worldScripts.FuelTweaks_FuelEconomy;
	if (ft) {
		ft.$reset();
		ft._fuelNormal = false; // turn off normal fuel operations
		ft._fuelUseRations = false; // turn on rationing
		// add some controls over fuel availability
		ft.$addFuelAvailability([4,5,6,7], [0], 5, true);
		ft.$addFuelAvailability([4,5,6,7], [1], 3, true);
		ft.$addFuelAvailability([0,1,2], [4,5,6,7], 0, false);
		ft.$addFuelAvailability([3,4,5,6,7], [2,3,4,5,6,7], 0, true);
		
		// add some controls over where refuelling stations are present
		ft.$addRefuelStationAvailability([4,5], [0], 8);
		ft.$addRefuelStationAvailability([4,5], [1], 6);
		ft.$addRefuelStationAvailability([4,5,6], [2], 3);
		ft.$addRefuelStationAvailability([3,4,5,6], [2,3,4,5,6,7], 2);
	}
}
Last edited by phkb on Tue Sep 12, 2017 3:10 am, edited 3 times in total.
User avatar
phkb
Impressively Grand Sub-Admiral
Impressively Grand Sub-Admiral
Posts: 4612
Joined: Tue Jan 21, 2014 10:37 pm
Location: Writing more OXPs, because the world needs more OXPs.

Re: [Split] Fuel Tweaks

Post by phkb »

Fuel Tweaks 1.3 is now available, via links above or though the download manager. In this version:
  • Tweaks to the equipment.plist file.
  • Added 5 and 6 ly fuel rations.
  • Tweaks to the logic of the various properties to make system clearer.
  • Added textures from gsagostinho's updated version of Fuel Stations.
  • Added reset function to remove any fuel-related settings currently in use.
  • Bug fixes.
User avatar
phkb
Impressively Grand Sub-Admiral
Impressively Grand Sub-Admiral
Posts: 4612
Joined: Tue Jan 21, 2014 10:37 pm
Location: Writing more OXPs, because the world needs more OXPs.

Re: [Split] Fuel Tweaks

Post by phkb »

Fuel Tweaks 1.5 is now available, via links above or through the download manager. In this version:
  • Message about fuel not being for sale incorrectly being broadcast even when rations are available.
  • Added information about fuel availability to the F7 System Data screen.
  • Fixed incorrect TL variable reference in various lookup functions.
  • Tweaks to checking functions to make them more logical.
User avatar
pleiadian
Deadly
Deadly
Posts: 143
Joined: Mon Feb 20, 2017 2:14 pm

Re: [Split] Fuel Tweaks

Post by pleiadian »

Excuse this question... not sure if I'm missing some fine piece of equipment on my ship, but... how exactly do you scoop this nice-sounding Quirium fuel from the star? I know I have to torus toward the sun, obviously. Then what? :D
User avatar
Cody
Sharp Shooter Spam Assassin
Sharp Shooter Spam Assassin
Posts: 16055
Joined: Sat Jul 04, 2009 9:31 pm
Location: The Lizard's Claw
Contact:

Re: [Split] Fuel Tweaks

Post by Cody »

Keep heading into the sun until the fuel scoops start gulping - external heat shielding is recommended.
I would advise stilts for the quagmires, and camels for the snowy hills
And any survivors, their debts I will certainly pay. There's always a way!
User avatar
Disembodied
Jedi Spam Assassin
Jedi Spam Assassin
Posts: 6874
Joined: Thu Jul 12, 2007 10:54 pm
Location: Carter's Snort

Re: [Split] Fuel Tweaks

Post by Disembodied »

Once the scoops start working, bring the ship's nose up and fly parallel to the surface of the star. Keep an eye on cabin temperature, and be ready to pull away as soon as the tanks are full. If you feel the urge, take a look at your ship on an external view, and watch it glow …
User avatar
Norby
---- E L I T E ----
---- E L I T E ----
Posts: 2577
Joined: Mon May 20, 2013 9:53 pm
Location: Budapest, Hungary (Mainly Agricultural Democracy, TL10)
Contact:

Re: [Split] Fuel Tweaks

Post by Norby »

Disembodied wrote: Mon Dec 04, 2017 4:09 pm
be ready to pull away as soon as the tanks are full.
Before the dive set a target system and press h if you feel the situation too hot.
User avatar
Cody
Sharp Shooter Spam Assassin
Sharp Shooter Spam Assassin
Posts: 16055
Joined: Sat Jul 04, 2009 9:31 pm
Location: The Lizard's Claw
Contact:

Re: [Split] Fuel Tweaks

Post by Cody »

Norby wrote: Mon Dec 04, 2017 6:04 pm
Before the dive set a target system and press h if you feel the situation too hot.
<nods> Yep! Although one should always have a jump preset - a quick exit may be needed for other reasons.

If you have the ASC, set it to the sun - makes it easier to put the sun directly astern, if required.
If you've got injectors (and some fuel), use them to get in fast - the scoops will still gulp quirium.
I would advise stilts for the quagmires, and camels for the snowy hills
And any survivors, their debts I will certainly pay. There's always a way!
User avatar
phkb
Impressively Grand Sub-Admiral
Impressively Grand Sub-Admiral
Posts: 4612
Joined: Tue Jan 21, 2014 10:37 pm
Location: Writing more OXPs, because the world needs more OXPs.

Re: [Split] Fuel Tweaks

Post by phkb »

In relation to this OXP:
In order to collect Quirium fuel, you will need (a) a Quirium Fuel Processor and optionally (b) some additional Quirium Fuel storage units. The fuel processor comes with its own storage unit. The storage units only take up cargo space when they are carrying fuel.

Once you have the processor and some storage capacity, you can head to the star and do exactly what what said: dive in until the fuel scoop starts, then fly parallel to the surface. Quirium fuel is only collected once your own tanks are full, so you need to stay in range while the fuel is scooped. When your fuel storage units are full the scoops will automatically stop.

For players using the Ship Configuration OXP: be careful about using injectors or the hyperdrive while you are being heated by the sun. Both those activities will add to cabin heat, meaning you your ship will likely overhead and explode.
User avatar
phkb
Impressively Grand Sub-Admiral
Impressively Grand Sub-Admiral
Posts: 4612
Joined: Tue Jan 21, 2014 10:37 pm
Location: Writing more OXPs, because the world needs more OXPs.

Re: [Split] Fuel Tweaks

Post by phkb »

Version 1.11 has been released. In this version:
  • Excluded fuel items from getting purchase notifications via the Email System.
  • Scooping ejected quirium fuel containers will now award the player a Quirium Fuel Storage unit, so they can safely keep the cargo, rather than requiring the cargo be auto-ejected.
  • Dumping quirium fuel will now dump a fuel storage unit along with it.
  • Adjusted the prices of the Quirium Fuel Storage unit and it's associated removal item.
  • Adjusted fuel storage equipment item configuration to handle case where player might have scooped some Quirium fuel and received fuel storage units, but without having a fuel processor.
  • Better logic for determining if an escape pod is installed.
  • Fixed missing variable definition errors during self-destruct sequence.
  • Fixed output messages including a "0" during the self-destruct sequence.
  • Corrected readme and wiki page regarding the Quirium Fuel Transfer equipment item and process.
User avatar
phkb
Impressively Grand Sub-Admiral
Impressively Grand Sub-Admiral
Posts: 4612
Joined: Tue Jan 21, 2014 10:37 pm
Location: Writing more OXPs, because the world needs more OXPs.

Re: [Split] Fuel Tweaks

Post by phkb »

Version 1.12 has been released. In this version:
  • Bug fixes and tweaks to the fuel transfer process.
  • Added link to Fuel Collector OXP to enable the fuel collector to collect fuel into the fuel processor.
  • Added variable pricing for pirate fuel, based on the amount of fuel required.
Fleurghber
Dangerous
Dangerous
Posts: 93
Joined: Sat Oct 07, 2017 1:24 pm

Re: [Split] Fuel Tweaks

Post by Fleurghber »

Latest startup log, testing the new version:

"Opening log for Oolite version 1.86 (x86-64) under Mac OS X Version 10.9.5 (Build 13F1911) at 2018-01-18 01:31:16 pm +0000.
Machine type: iMac14,1, 8192 MiB memory, 4 x x86 (Haswell) @ 2700 MHz.
Build options: OpenAL, new planets.

Note that the contents of the log file can be adjusted by editing logcontrol.plist.

13:31:16.547 [dataCache.rebuild.pathsChanged]: Cache is stale (search paths have changed). Rebuilding from scratch.
13:31:16.817 [system]: Invalid color System, labelColor (warning given only once)
13:31:16.886 [rendering.opengl.version]: OpenGL renderer version: 2.1.0 ("2.1 INTEL-8.28.37"). Vendor: "Intel Inc.". Renderer: "Intel Iris Pro OpenGL Engine".
13:31:16.886 [rendering.opengl.extensions]: OpenGL extensions (128):
GL_EXT_texture_compression_dxt1, GL_EXT_rescale_normal, GL_EXT_transform_feedback, GL_EXT_blend_func_separate, GL_EXT_framebuffer_sRGB, GL_ATI_texture_env_combine3, GL_ARB_draw_elements_base_vertex, GL_EXT_debug_label, GL_EXT_geometry_shader4, GL_EXT_secondary_color, GL_EXT_separate_specular_color, GL_EXT_shadow_funcs, GL_NV_texgen_reflection, GL_NV_blend_square, GL_ARB_texture_compression_rgtc, GL_EXT_stencil_wrap, GL_ARB_texture_env_crossbar, GL_EXT_framebuffer_blit, GL_ATI_separate_stencil, GL_APPLE_vertex_point_size, GL_EXT_texture_rectangle, GL_APPLE_specular_vector, GL_EXT_packed_depth_stencil, GL_EXT_blend_color, GL_ARB_fragment_program_shadow, GL_EXT_texture_env_add, GL_EXT_provoking_vertex, GL_EXT_texture_array, GL_ARB_texture_env_combine, GL_ARB_point_sprite, GL_ARB_multisample, GL_EXT_framebuffer_object, GL_ARB_framebuffer_sRGB, GL_EXT_texture_lod_bias, GL_APPLE_pixel_buffer, GL_ARB_vertex_program, GL_EXT_bgra, GL_APPLE_fence, GL_APPLE_ycbcr_422, GL_EXT_timer_query, GL_EXT_vertex_array_bgra, GL_ARB_depth_clamp, GL_IBM_rasterpos_clip, GL_ARB_pixel_buffer_object, GL_SGIS_generate_mipmap, GL_EXT_framebuffer_multisample_blit_scaled, GL_ARB_shader_texture_lod, GL_ARB_texture_float, GL_ARB_texture_rectangle, GL_ARB_vertex_shader, GL_NV_texture_barrier, GL_ARB_provoking_vertex, GL_ARB_texture_env_add, GL_APPLE_object_purgeable, GL_ARB_texture_env_dot3, GL_APPLE_rgb_422, GL_NV_depth_clamp, GL_ARB_texture_mirrored_repeat, GL_ARB_texture_cube_map, GL_APPLE_element_array, GL_ATI_texture_float, GL_ARB_window_pos, GL_ARB_sync, GL_ARB_vertex_buffer_object, GL_APPLE_texture_range, GL_NV_conditional_render, GL_EXT_stencil_two_side, GL_ARB_texture_compression, GL_ARB_instanced_arrays, GL_EXT_blend_minmax, GL_ARB_texture_border_clamp, GL_EXT_draw_buffers2, GL_ARB_shading_language_100, GL_EXT_blend_equation_separate, GL_ARB_vertex_blend, GL_EXT_blend_subtract, GL_EXT_packed_float, GL_APPLE_aux_depth_stencil, GL_APPLE_row_bytes, GL_NV_light_max_exponent, GL_EXT_abgr, GL_EXT_texture_filter_anisotropic, GL_ARB_vertex_array_bgra, GL_ARB_draw_buffers, GL_ARB_transpose_matrix, GL_ARB_color_buffer_float, GL_EXT_gpu_program_parameters, GL_APPLE_client_storage, GL_ARB_texture_non_power_of_two, GL_ARB_multitexture, GL_EXT_gpu_shader4, GL_APPLE_flush_render, GL_ARB_framebuffer_object, GL_APPLE_vertex_program_evaluators, GL_APPLE_transform_hint, GL_EXT_texture_compression_s3tc, GL_APPLE_flush_buffer_range, GL_EXT_texture_integer, GL_SGIS_texture_edge_clamp, GL_NV_fog_distance, GL_ARB_occlusion_query, GL_ARB_fragment_shader, GL_ARB_texture_rg, GL_ARB_fragment_program, GL_ARB_seamless_cube_map, GL_ARB_shader_objects, GL_EXT_draw_range_elements, GL_APPLE_vertex_array_object, GL_ARB_depth_texture, GL_EXT_texture_sRGB, GL_ARB_half_float_vertex, GL_APPLE_vertex_array_range, GL_ARB_shadow, GL_EXT_multi_draw_arrays, GL_ARB_half_float_pixel, GL_APPLE_packed_pixels, GL_ARB_point_parameters, GL_EXT_debug_marker, GL_EXT_texture_sRGB_decode, GL_EXT_clip_volume_hint, GL_SGIS_texture_lod, GL_EXT_fog_coord, GL_EXT_texture_shared_exponent, GL_ATI_texture_mirror_once, GL_APPLE_float_pixels, GL_EXT_framebuffer_multisample, GL_ARB_depth_buffer_float, GL_ARB_draw_instanced
13:31:17.266 [rendering.opengl.shader.support]: Shaders are supported.
13:31:17.604 [dataCache.rebuild.pathsChanged]: Cache is stale (search paths have changed). Rebuilding from scratch.
13:31:17.630 [searchPaths.dumpAll]: Resource paths:
~/Desktop/Games and things/Elite family/Oolite-1.86/Oolite.app/Contents/Resources
~/Library/Application Support/Oolite/Managed AddOns
~/Library/Application Support/Oolite/AddOns
~/Library/Application Support/Oolite/Managed AddOns/cim.gsagostinho.systemfeatures.rings.oxz
~/Library/Application Support/Oolite/Managed AddOns/DTT.Atlas 1.1.Paradox.oxz
~/Library/Application Support/Oolite/Managed AddOns/DTT.Cyclops 1.0.Paradox.oxz
~/Library/Application Support/Oolite/Managed AddOns/DTT.Galaxy_Liner 1.0.Paradox.oxz
~/Library/Application Support/Oolite/Managed AddOns/DTT.Heart_of_Gold 1.0.Paradox.oxz
~/Library/Application Support/Oolite/Managed AddOns/DTT.Heavy_Metal.Paradox.oxz
~/Library/Application Support/Oolite/Managed AddOns/DTT.Kraken.Paradox.oxz
~/Library/Application Support/Oolite/Managed AddOns/DTT.Manta.Paradox.oxz
~/Library/Application Support/Oolite/Managed AddOns/DTT.MK-1 1.0.Paradox.oxz
~/Library/Application Support/Oolite/Managed AddOns/DTT.Planet_Express 1.1.Paradox.oxz
~/Library/Application Support/Oolite/Managed AddOns/DTT.Snake Charmer Pinup 1.1.Paradox.oxz
~/Library/Application Support/Oolite/Managed AddOns/DTT.Space Zeppelin 1.0.Paradox.oxz
~/Library/Application Support/Oolite/Managed AddOns/DTT.Tomahawk.Paradox.oxz
~/Library/Application Support/Oolite/Managed AddOns/DTT.War_Lance.Paradox.oxz
~/Library/Application Support/Oolite/Managed AddOns/DTT.Wraith.Paradox.oxz
~/Library/Application Support/Oolite/Managed AddOns/gsagostinho.DangerousHUD.GreenVariant.oxz
~/Library/Application Support/Oolite/Managed AddOns/gsagostinho.DangerousKeyconfig.oxz
~/Library/Application Support/Oolite/Managed AddOns/gsagostinho.TexturePack.Adder.oxz
~/Library/Application Support/Oolite/Managed AddOns/gsagostinho.TexturePack.AspMkII.oxz
~/Library/Application Support/Oolite/Managed AddOns/gsagostinho.TexturePack.CobraMkIII.oxz
~/Library/Application Support/Oolite/Managed AddOns/gsagostinho.TexturePack.FerDeLance.oxz
~/Library/Application Support/Oolite/Managed AddOns/gsagostinho.TexturePack.Python.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.hud.data.Wildeblood.Docked_HUDs.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.hud.data.Wildeblood.ShipName.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.ace..Cruzer.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.ace..Hornet.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.ace..NightAdder.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Aegidean.CompactHUD.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.AndreyBelov.BountyInformer.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.AndreyBelov.DuplexFuelTank.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.AndreyBelov.Targeter.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.ArexackHeretic.att1.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.ArexackHeretic.CargoWreck.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.ArexackHeretic.ThargornThreat.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Astrobe.adder-start.oxz.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.astrobe.compassautoswitch.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Astrobe.luckycharm.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.astrobe.missiles.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Astrobe.ShakyDrive.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Astrobe.smallships.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.astrobe.spacecrowds.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Astrobe.surjectors.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.BeeTLeBeTHLeHeM.LifeInTheFrontier.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.ByronArn.AutoRefuel.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.capt_murphy.Illegal_Goods_Tweak.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.captain_beatnik.coluber_hud_ch01.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.captain_beatnik.Pitviper.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.captain_beatnik.Pitviper2.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.captkev.fighter_hud2.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.CaptMurphy.BreakableHUDIFFScanner.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.CaptMurphy.EscortContracts.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.CaptMurphy.ExplorersClub.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.CaptMurphy.PoliceIFFScanner.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.CaptMurphy.ShipStorageHelper.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.CaptSolo.Cobra_Mk3-XT.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.captsolo.copperhead21.1.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.captsolo.cougar_st1.5.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.captsolo.i-missile1.15.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.captsolo.simonb's_ships1.0.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.captsolo.tori2.02.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.cheyd.DHI_nav_buoy.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.cim.camera-drones.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.cim.comms-pack-a.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.cim.cotbs.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.cim.energy-bomb.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.cim.escort-formations.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.cim.ships-library.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.cim.shipset-compatibility.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.cim.skilled-npcs.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.cim.systemfeatures.sunspots.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.ClymAngus.Kirin.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.ClymAngus.KirinSport.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.ClymAngus.NeoCaduceus.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.CmdCheyd.DH_AdvancedNavigationComputer.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.CmdCheyd.DH_EmergencyWitchspaceInitiator.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.CmdrWombat.Deposed.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.CmdrWombat.ThargoidWars.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.cody.green-gecko-xl.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Commander_McLane.Anarchies.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Commander_McLane.Auto_Eject.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Commander_McLane.Fireworks.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Commander_McLane.Randomshipnames.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Commander_McLane.Sell_Equipment.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Commander_McLane.Total_patrol.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.CommonSenseOTB.NumericHUD.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.CommonSenseOTB.Q-Charger.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.CommonSenseOTB.ShieldEqualizer+Capacitors.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.CommonSenseOTB.SniperLock.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Diagoras.MiningContracts.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Disembodied.FreeTradeZone.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Diziet.Q-Bomb-Detector.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Draco_Caeles.GenerationShips.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.DrNil.Commies.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.DrNil.YAH.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.DrTripsa.InSystemTrader.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.edgepixel.FontDangerousSquare.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.edgepixel.FontDosis.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.EricWalch.DeepSpaceDredger.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.EricWalch.DeepSpacePirates.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.EricWalch.MisjumpAnalyser.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.EricWalch.MissileAnalyser.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.EricWalch.PirateCove.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.EricWalch.TionislaReporter.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Frame.FuelCollector.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.FritzG.Navigation_Flashers.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.FritzG.Synchronised_Torus.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Galileo.Ionics.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Griff.Asteroids.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Griff.Cargopod.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Griff.Constrictor.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Griff.Escape_Capsule.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Griff.Griff_shipset_decals.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Griff.Hognose.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Griff.Missiles.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Griff.Santa.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Griff.Station_Bundle.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Griff.Thargoids.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Griff.Viper_exp.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Griff.Viper_Interceptor_exp.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Griff_alloys_and_wreckage.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.hoqllnq.missile-beep.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.jh145.ScannerAlertingEnhancement.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.JohnSmith.LoveCats.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Kaks.FontTty.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Knotty.mvm_veloceeappuntita.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Knotty.RealisticStarsSSC.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Layne.DockingFees.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.LittleBear.AsteroidStorm.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.littlebear.blackmonks.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.maik.beercooler.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Murgh.HoOpyCasino.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Murgh.MilitaryFiasco.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Murgh.NuVipers.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Neelix.WaypointHere.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.NewtSoup.MiningIFFScannerUpgrade.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Ngalo.N-Shields.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Norby.CombatMFD.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Norby.Eco_Lasers.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Norby.Engine_Sound.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Norby.EscortDeck.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Norby.Fighters.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Norby.FreighterConvoys.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Norby.Gallery.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Norby.Gatling_Laser.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Norby.HardShips.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Norby.HDBG.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Norby.Headlights.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Norby.HUDSelector.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Norby.ILS.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Norby.Laser_Cooler.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Norby.LaserCannons.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Norby.LogEvents.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Norby.MinerCobra.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Norby.missile_booster.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Norby.Multiple_Lasers.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Norby.ReverseControl.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Norby.SafetyCatch.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Norby.SellAll.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Norby.Sniper_Gun.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Norby.TheCollector.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Norby.TimeControl.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Norby.TorusToSun.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Norby.Towbar.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Norby.Trails.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Norby.VariableMasslock.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.ocz.SUWitchdrive.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Okti.CargoScanner.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Pagroove.FamousPlanets.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Pagroove.Superhub.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.phkb.AutoDock.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.phkb.AutoPrimeEquipment.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.phkb.BountySystem.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.phkb.BroadcastCommsMFD.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.phkb.BulkCargoProcessor.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.phkb.BulletinBoardSystem.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.phkb.CommsLogMFD.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.phkb.DamageReportMFD.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.phkb.DeathComms.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.phkb.DisplayCurrentCourse.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.phkb.EmailSystem.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.phkb.EquipmentRemoveItemColor.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.phkb.EscapePodTweaks.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.phkb.FastTargetSelector.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.phkb.FontDiscognate.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.phkb.FontNovaSquare.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.phkb.FontOCRAExtended.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.phkb.FontXolonium.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.phkb.FuelTweaks.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.phkb.GalacticRegistry.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.phkb.IllicitUnlock.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.phkb.LMSS.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.phkb.ManualWitchspaceAlignment.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.phkb.MFDFastConfiguration.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.phkb.ShipComparison.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.phkb.ShipConfiguration.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.phkb.Smugglers_TGU.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.phkb.StationDockControl.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.phkb.SystemDataConfig.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.phkb.TionislaOrbitalGraveyard.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.phkb.XenonHUD.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Pleb.TaxiGalactica.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.popsch.Stashes.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Ramen.Planner.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Ramirez.FuelTank.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Ramirez.MissilesandBombs.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.redspear.hyperdrives.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.redspear.indestructible_injectors.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.redspear.lightspeeder.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.redspear.new_lasers.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.redspear.solos_alt_stations.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.redspear.traffic_redistributer.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.RobertTodd.Taranis.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.rorschachhamster.Dragonships.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Rorschachhamster.Satellites.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Rustem.DistantStar.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Selezen.SpyHunter.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.sirarian.sks-plasma-mk-1.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.SMax.AsteroidRandomizer.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.SMax.AsteroidRemover.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.SMax.FuelGenerator.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.SMax.MFDRestoreAfterLoad.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.SMax.PlanetFallMarketSaver.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.SMax.ZeroMap.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.smivs.aliens.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.smivs.BattleDamage.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.smivs.better Buoys.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.smivs.betterScreens.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.smivs.ClassicMussurana.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.smivs.ClassicShips(Addition).oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.smivs.classicShipyard.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.smivs.classicSuperPythons.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.smivs.classicVarietyPack.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.smivs.ClassicXShips.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.smivs.CombatHUD-Widescreen.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.smivs.CombatHUD_v3.0.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.smivs.contractor.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.smivs.cup_of_tea.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.smivs.Delightful Docking.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.smivs.GalDrivePod.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.smivs.GiantSpacePizza.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.smivs.SmartHUD-WS.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.smivs.SmartHUD.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.smivs.Star-jelly.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.smivs.teretrurus.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.spara.aad-hud.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.spara.additional_planets_sr_base.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.spara.asteroid-tweaks.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.spara.audible_docking_clearance.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.spara.behemoth.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.spara.commodity_markets.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.spara.countdown_to_zero.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.spara.eq_aide.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.spara.glare_filter.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.spara.ImperialAstrofactory.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.spara.in-system_taxi.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.spara.manifest_mfd.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.spara.market_cooldown.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.spara.market_inquirer.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.spara.market_observer.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.spara.navigation_mfd.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.spara.ore_processor.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.spara.random_hits.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.spara.random_player-ship_name.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.spara.rescue_stations.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.spara.sb-faves.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.spara.spicy_hermits.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.spara.start_advice.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.spara.start_choices.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.spara.station_ads.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.spara.trophy_collector.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.spud42.Eagle_Transporter.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.staer9.chopped_cobra.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Staer9.Icesteroids.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.staer9.staer9_shipset.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.staer9.StarDestroyer.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Storm.TionislaChronicleArray.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.stormrider.Darkside_Moonshine_Distillery.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.stormrider.manifestScanner.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Stormrider.Stormbrewer.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Strato1.MoreEscapePods.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.superbatprime.Ship's_Cat.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Svengali.CCL.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Svengali.Eric.BuoyRepair.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Switeck.Auto-ECM.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Switeck.Cargo-Contract-Mod.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Thargoid.APRIL.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Thargoid.Armoury.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Thargoid.Bigships.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Thargoid.CargoShepherd.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Thargoid.CargoSpotter.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Thargoid.CommandersLog.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Thargoid.EnergyEquipment.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Thargoid.FlightLog.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Thargoid.FuelStation.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Thargoid.Gates.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Thargoid.HiredGuns.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Thargoid.HyperCargo.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Thargoid.IronHide.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Thargoid.LaserBooster.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Thargoid.LaveAcademy.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Thargoid.MilFuelInj.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Thargoid.NavalGrid.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Thargoid.Neo-Docklights.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Thargoid.OoCheat.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Thargoid.PlanetaryCompass.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Thargoid.Planetfall.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Thargoid.Pods.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Thargoid.RealisticDamage.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Thargoid.RepairBots.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Thargoid.RetroRockets.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Thargoid.RingRacer.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Thargoid.SecondWave.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Thargoid.Stealth.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Thargoid.StellarSerpents.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Thargoid.Swarm.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Thargoid.TAP.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Thargoid.TCAT.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Thargoid.Tracker.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Thargoid.TrackerCam.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Thargoid.TrafficControl.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Thargoid.Vortex.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Thargoid.WelcomeMat.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Thargoid.Wildships.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Thargoid.YAH-Mobile.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.ThetaSeven.TAURockhopper.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Tricky.Jaguar_Company.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.UK_Eliter.ExtraThargoids.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.UK_Eliter.Ferdelance_3G.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.UK_Eliter.InterstellarTweaks.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.UK_Eliter.NexusMissile.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.UK_Eliter.SuperSidewinder.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Vincentz.3dFont.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Vincentz.NovaLuxHUD.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Wildeblood.alerting_crosshairs.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Wildeblood.AutoCrosshairs.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Wildeblood.BulletDrive.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Wildeblood.Contracted_Goods_Reminder.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Wildeblood.Display_Reputation.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Wildeblood.DistantSpace.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Wildeblood.galaxy_names.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Wildeblood.GlareClarifier.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Wildeblood.interfaces_screen.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Wildeblood.LaserificCrosshairs.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Wildeblood.ShieldtasticCrosshairs.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Wildeblood.Station_Self_Destruction.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Wildeblood.Undocumented_Launch.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Wildeblood.Untrumbled.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.z.phkb.XenonUI.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.Zireael.FontStandalone.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.zireael.laser-colors.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.zireael.oranged-hud.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.ZygoUgo.Asteroids_resources.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.ZygoUgo.Buoy.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.ZygoUgo.Explosions.oxz
~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.ZygoUgo.ZygoCinematicSkyNebulas.oxz
~/Library/Application Support/Oolite/Managed AddOns/tws_satnav.oxz
13:31:18.152 [shipData.load.begin]: Loading ship data.
13:31:18.401 [plist.parse.failed]: Failed to parse ~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.UK_Eliter.InterstellarTweaks.oxz/Config/shipdata.plist as a property list.
Unexpected character { at line 1
13:31:20.295 [plist.parse.failed]: Failed to parse ~/Library/Application Support/Oolite/Managed AddOns/oolite.oxp.UK_Eliter.InterstellarTweaks.oxz/Config/missiontext.plist as a property list.
Unexpected character { at line 1
13:31:24.609 [startup.complete]: ========== Loading complete in 7.77 seconds. ==========
13:31:25.895 [exit.context]: Exiting: Exit Game selected on start screen.

Closing log at 2018-01-18 01:31:25 pm +0000."
Fleurghber
Dangerous
Dangerous
Posts: 93
Joined: Sat Oct 07, 2017 1:24 pm

Re: [Split] Fuel Tweaks

Post by Fleurghber »

Sorry, please ignore my last post and delete if possible.
User avatar
Damocles Edge
---- E L I T E ----
---- E L I T E ----
Posts: 256
Joined: Thu Mar 30, 2017 9:57 pm

Re: [Split] Fuel Tweaks

Post by Damocles Edge »

Many thanks for your efforts to incorporate fuel collector with this oxp (even though fuel collector is not your oxp) it is greatly appreciated.
Can I offer the following observations which I have made (again I realise that it may not be within your remit as fuel collector is managed by another).

1. I have noticed that fuel collector now cuts off sun skimming - that is you can sun skim until fuel collector kicks in with 0.1 of fuel and then all sun skimming activity stops.
2. Although I keep getting fuel collector notifications of 0.1 whilst my ships fuel tank is full (7.0 ly) I never seem to get an increase in quirium fuel storage unit (I have been diligently monitoring this).
3. Fuel collector enables you to fly within 225m of a ship and hack (steal) fuel from the tanks of that ship - this is then deposited in your own tank until your tank is full, I wondered if it is possible to transfer this hacked fuel to quirium fuel storage units if your tank is full?

Keep up the great work in making a great game all the better.
O.C.T.D (Oolite Crash Test Dummy) Hmm Hmm Hmm Hmm......
User avatar
phkb
Impressively Grand Sub-Admiral
Impressively Grand Sub-Admiral
Posts: 4612
Joined: Tue Jan 21, 2014 10:37 pm
Location: Writing more OXPs, because the world needs more OXPs.

Re: [Split] Fuel Tweaks

Post by phkb »

Damocles Edge wrote:
1. I have noticed that fuel collector now cuts off sun skimming - that is you can sun skim until fuel collector kicks in with 0.1 of fuel and then all sun skimming activity stops.
Oops. :oops: Must have broken something. I'll check this out.
Damocles Edge wrote:
2. Although I keep getting fuel collector notifications of 0.1 whilst my ships fuel tank is full (7.0 ly) I never seem to get an increase in quirium fuel storage unit (I have been diligently monitoring this).
I'm testing this at the moment, by heading directly into open space and just cruising, and I can see that it's actually working as intended. 1t of Quirium translates to 7ly of fuel. In order for the Fuel Collector to scoop enough to fill a 1t container, it will take approximately 2hrs and 55mins of flight time....

Hmm...I know what you're thinking. That's way, way too short an amount of time. Am I right? Huh?

<sigh>Back to the drawing board...
Damocles Edge wrote:
3. Fuel collector enables you to fly within 225m of a ship and hack (steal) fuel from the tanks of that ship - this is then deposited in your own tank until your tank is full, I wondered if it is possible to transfer this hacked fuel to quirium fuel storage units if your tank is full?
I'll have a look, but I'm less inclined on this one. The handwavium reason being that fuel that is in a fuel tank is contaminated, and cannot be accepted by commodities markets as pure Quirium fuel.

I'll try and get an update out before the weekend. Thanks for your reports!
Post Reply