| Back to Index | Page generated: Oct 27, 2025, 5:37:22 AM | 
 Expansion Bulk Haulers
 Expansion Bulk Haulers| from Expansion Manager's OXP list | from Expansion Manifest | |
|---|---|---|
| Description | Adds the Bulk Hauler, the Super Bulk Hauler, the Long Range Cruiser (FFE) and the Lynx Bulk Carrier (FFE) to Oolite. | Adds the Bulk Hauler, the Super Bulk Hauler, the Long Range Cruiser (FFE) and the Lynx Bulk Carrier (FFE) to Oolite. | 
| Identifier | oolite.oxp.zzz.Montana05.adck_bulk_haulers | oolite.oxp.zzz.Montana05.adck_bulk_haulers | 
| Title | Bulk Haulers | Bulk Haulers | 
| Category | Ships | Ships | 
| Author | ADCK | ADCK | 
| Version | 1.41 | 1.41 | 
| Tags | giant ships | giant ships | 
| Required Oolite Version | ||
| Maximum Oolite Version | ||
| Required Expansions | ||
| Optional Expansions | ||
| Conflict Expansions | ||
| Information URL | https://wiki.alioth.net/index.php/Bulk_Haulers | n/a | 
| Download URL | https://wiki.alioth.net/img_auth.php/5/5d/Oolite.oxp.zzz.Montana05.adck_bulk_haulers.oxz | n/a | 
| License | CC BY-NC-SA 4.0 | CC BY-NC-SA 4.0 | 
| File Size | n/a | |
| Upload date | 1664025321 | 
Also read http://wiki.alioth.net/index.php/Bulk%20Haulers
ADCK's Bulk Haulers V1.4 OXP Concept and Idea: ADCK, New textures and models: ADCK (Super Bulk Hauler inspired by the original BH01 by Aegidian) (Long Range Cruiser & Lynx Bulk Hauler inspired by their FFE counterparts by Frontier Development) Super Bulk Hauler reskin: PAGroove BH01 & its subentities models: Aegidian Shader files: Griff & From neolites by Simon B Billboard Suggestions: Griff (Includes shaders which require Oolite 1.69 or later) Find this and more OXP's at: http://wiki.alioth.net/index.php/OXP#Table_of_all_OXPs -------------------------------------- Description -------------------------------------- Adds Bulk Haulers to the game, including: *Retextured version of Aegidians Bulk Hauler as seen in the Oolite video on YouTube, which until recently has not been available to the public. 4 of which have nameplates. NEW! Original Texture verion with shaders added. *6 Versions of the Super Bulk Hauler, a massive Cargo Ship inspired by Aegidians Bulk Hauler, one of which is retextured by PAGroove. NEW! 4 new versions with a billboard attachment, two of which are animated. *Long Range Cruiser, based on the design of the FFE version. *2 Versions of Lynx Bulk Carrier, based on the design of the FFE version. (For a little surprise, try destroying the LBC. this ship has a unique "on-death" script) -------------------------------------- Bigships -------------------------------------- Included with this OXP is the excellent Bigships.oxp from Thargoid and Eric Walch. Before using this ship install the Bigships.oxp -------------------------------------- Installation -------------------------------------- Before installation, be sure to delete any previous versions of adcks_bulk_haulers. Extract the adcks_bulk_haulers_v1.4.oxp into your Addons directory of Oolite. Just to be sure startup Oolite with the SHIFT-key pressed until you see the spinning CobraMKIII. -------------------------------------- Law Stuffs -------------------------------------- This is a free-for-all resource. Public Domain Blah blah blah, really, you can do whatever you like with it.
| Path | |
|---|---|
| Scripts/adck_lbcScript.js | this.name = "adck_lbc"; 
this.author = "ADCK"; 
this.copyright = "� 2010 AncientDwarvenChaosKnight"; 
this.description = "Wreckage spawning from LBC"; 
this.version = "1.0"; 
this.shipDied = function()
{
	this.ship.spawn("adck-lbccargo1", 1);
	this.ship.spawn("adck-lbccargo2", 1);
	this.ship.spawn("adck-lbccargo3", 1);
	this.ship.spawn("adck-lbccargo4", 1);
	this.ship.spawn("adck-lbccargo5", 1);
	this.ship.spawn("adck-lbccargo6", 1);
	this.ship.spawn("adck-lbchull", 1);
	this.ship.spawn("adck-lbcnocar", 1);
} | 
| Scripts/adck_lbcScriptb.js | this.name = "adck_lbc"; 
this.author = "ADCK"; 
this.copyright = "� 2010 AncientDwarvenChaosKnight"; 
this.description = "Wreckage spawning from LBC"; 
this.version = "1.0"; 
this.shipDied = function()
{
	this.ship.spawn("adck-lbccargo1b", 1);
	this.ship.spawn("adck-lbccargo2b", 1);
	this.ship.spawn("adck-lbccargo3b", 1);
	this.ship.spawn("adck-lbccargo4b", 1);
	this.ship.spawn("adck-lbccargo5b", 1);
	this.ship.spawn("adck-lbccargo6b", 1);
	this.ship.spawn("adck-lbchull", 1);
	this.ship.spawn("adck-lbcnocar", 1);
} |