Back to Index Page generated: May 8, 2024, 6:16:03 AM

Expansion Cargo Scoop as Standard

Content

Manifest

from Expansion Manager's OXP list from Expansion Manifest
Description Awards Cargo Scoop to the player ship. Press 'i' for more information. - - - - - - - - - - Free cargo scoops mean that the beginning player can scoop debris. However unlikely it may seem, they could now be a pirate or even a miner (pulse laser will rarely splinter asteroids but it can happen) from the start. You can't scoop fuel with them but should you accidentally jettison some cargo or be lucky enough to stumble across some salvage then the goods are yours. Also, when you buy your first new piece of equipment, there's a chance that something rather less important might get damaged instead. A small boost at the start of a career. Awards Cargo Scoop to the player ship. Press 'i' for more information. - - - - - - - - - - Free cargo scoops mean that the beginning player can scoop debris. However unlikely it may seem, they could now be a pirate or even a miner (pulse laser will rarely splinter asteroids but it can happen) from the start. You can't scoop fuel with them but should you accidentally jettison some cargo or be lucky enough to stumble across some salvage then the goods are yours. Also, when you buy your first new piece of equipment, there's a chance that something rather less important might get damaged instead. A small boost at the start of a career.
Identifier Oolite.oxp.redspear.cargo_scoop_as_standard Oolite.oxp.redspear.cargo_scoop_as_standard
Title Cargo Scoop as Standard Cargo Scoop as Standard
Category Equipment Equipment
Author Redspear Redspear
Version 1.1 1.1
Tags
Required Oolite Version
Maximum Oolite Version
Required Expansions
Optional Expansions
Conflict Expansions
Information URL http://aegidian.org/bb/viewtopic.php?f=4&t=20599&sid=35df3867b40174f80ec756081a6bc0b9 n/a
Download URL https://wiki.alioth.net/img_auth.php/a/aa/Oolite.oxp.redspear.cargo_scoop_as_standard.oxz http://wiki.alioth.net/img_auth.php/a/aa/Oolite.oxp.redspear.cargo_scoop_as_standard.oxz
License CC-BY-NC-SA 4.0 CC-BY-NC-SA 4.0
File Size n/a
Upload date 1611697598

Documentation

Also read http://wiki.alioth.net/index.php/Cargo%20Scoop%20as%20Standard

Equipment

Name Visible Cost [deci-credits] Tech-Level
Cargo Scoop yes 1000 3+

Ships

This expansion declares no ships.

Models

This expansion declares no models.

Scripts

Path
Scripts/cargo_scoop_as_standard.js
this.name        = "cargo_scoop_as_standard"; 
this.author      = "Redspear"; 
this.copyright   = "2020 Redspear";
this.licence     = "CC BY-NC-SA 4.0"; 
this.description = "Script to add escape pod to the player ship"; 
this.version     = "1.0";

"use strict";

// make sure player ship has cargo scoops
this.startUp = this.shipDockedWithStation = function()
{
	if (player.ship.equipmentStatus("EQ_CARGO_SCOOPS") != "EQUIPMENT_OK" && player.ship.equipmentStatus("EQ_CARGO_SCOOPS") != "EQUIPMENT_DMAMAGED")
		{player.ship.awardEquipment("EQ_CARGO_SCOOPS");}
		else
		return	
}