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

Expansion Auto-ECM

Content

Manifest

from Expansion Manager's OXP list from Expansion Manifest
Description Automatic ECM System - Simple Auto-firing system for ECM. Automatic ECM System - Simple Auto-firing system for ECM.
Identifier oolite.oxp.Switeck.Auto-ECM oolite.oxp.Switeck.Auto-ECM
Title Auto-ECM Auto-ECM
Category Equipment Equipment
Author Switeck Switeck
Version 0.4 0.4
Tags ECM, detector ECM, detector
Required Oolite Version
Maximum Oolite Version
Required Expansions
Optional Expansions
Conflict Expansions
Information URL http://aegidian.org/bb/viewtopic.php?f=4&t=9765 n/a
Download URL https://wiki.alioth.net/images/5/55/Oolite.oxp.Switeck.Auto-ECM_0.4.oxz http://wiki.alioth.net/images/5/55/Oolite.oxp.Switeck.Auto-ECM_0.4.oxz
License CC-BY-NC-SA 3.0 CC-BY-NC-SA 3.0
File Size n/a
Upload date 1610873301

Documentation

Also read http://wiki.alioth.net/index.php/Auto-ECM

Auto-ECM v0.4 readme.txt

Auto-ECM OXP
------------------
Add-on for Oolite by Giles Williams
Author: Switeck (switeck@hotmail.com)
Version: 0.4
Date: March 24, 2014

Overview:
------------
This is a watered-down ECM-only antimissile system inspired by Ramirez's chaff launcher, Thargoid's Anti Missile System, Cmdr Wyvern's Automatic Chaff System (which was based on Thargoid's AMS and Ramirez's Chaff Dispenser), and Screet's Missile Countermeasures (which was based on Cmdr Wyvern's Automatic Chaff System). 

It's not "intelligent" -- it just fires the ECM *ONCE* when a missile is fired at the player's ship. In a sense, you can assume many NPC ships already have this equipment. It will warn but not fire the ECM if the energy levels are really low. It can be enabled/disabled, via equipment activation...in case you'd prefer to manually use ECM or if you have other OXP equipment that has the same effect. Even when enabled, ECM can still be fired manually...but not more often than normal.


Purpose of this equipment:
--------------------------
I recognize that there are quite a few anti-missile systems out there, most of which use the ECM as well. But I saw none that used ONLY the ECM.

Pretty much all of them seem to utilize hammerspace ( http://tvtropes.org/pmwiki/pmwiki.php/Main/Hammerspace ) with equipment that I don't see as very small. They need their own special ammo bin and launcher either firing forwards, firing/dropping rearwards, or both. Chopping specialized holes in the exterior of the player's ship can't help the overall resale value, especially if those items are later removed. While fluff-wise the Cobra 3 does have some unused internal space, I didn't get the impression it was in a convenient location for external exits. On top of this, the antimissile systems serve to devalue the somewhat expensive ECM-resistant "hardhead" missiles as well as quite a few even more expensive (but typically more powerful) OXP missiles. NPC ships cannot use the OXP antimissile equipment, at least not without additional complex scripting. In short, they have serious game balance issues. They're too good (some at least are), have few/no weaknesses (cost-wise or space used), and/or player only.


Installation:
-------------
Drop this oxz in your "AddOns" folder.
For de-installation just remove the oxz from the AddOns folder.

...Or download this OXZ from the Oolite AddOns server!

There may be a minor conflict with this and Cmdr Wyvern's Automatic Chaff System, Ramirez's Chaff Launcher, Thargoid's Anti Missile System, and/or Screet's Missile Countermeasures.
The ECM may fire multiple times consecutively per each incoming missile as a result, rapidly depleting your energy banks.
So it's best to have only 1 such system installed or activated. (Good thing Auto-ECM can be disabled!)
But even together, the OXPs will not cause the ECM to fire faster than you could manually.

Message thread giving more details:
http://aegidian.org/bb/viewtopic.php?f=4&t=9765


Version history:
-------------------
0.1	Initial testing phase (pre-release)
0.2	Minor cleanups...
0.3	Readme (this file) changes and updated the script version to 0.3 as well as stating only compatible with Oolite v1.75 and later.
0.4	Minor Readme (this file) changes and converted over to the OXZ format, so only compatible with Oolite v1.79 and later.

License:
----------
Creative Commons - Attribution-ShareAlike 3.0 United States
http://creativecommons.org/licenses/by-sa/3.0/us/

Equipment

Name Visible Cost [deci-credits] Tech-Level
Auto-ECM yes 12000 8+

Ships

This expansion declares no ships.

Models

This expansion declares no models.

Scripts

Path
Scripts/autoecm_system.js
this.name        = "Automatic ECM System";
this.author      = "Switeck";
this.licence        = "Creative Commons Attribution - Non-Commercial - Share Alike 3.0";
this.copyright      = "(C) 2011 Switeck";
this.description = "Automatic ECM  System - Simple Auto-firing system for ECM.";
this.version     = "0.3.2 - for Oolite 1.75 and later";

"use strict";

this.activated = function()
{
	if(player.ship.equipmentStatus("EQ_AUTOECM") === "EQUIPMENT_OK") {
		if(missionVariables.autoECM) {
			missionVariables.autoECM = 0;
			player.commsMessage("Automatic ECM System Disabled.",6);
		} else {
			missionVariables.autoECM = 1;
			player.commsMessage("Automatic ECM System ONLINE!",6);
		}
	} else player.commsMessage("AutoECM Equipment damaged!",6);
}

this.shipLaunchedFromStation = this.shipExitedWitchspace = function() {
	if(player.ship.equipmentStatus("EQ_AUTOECM") === "EQUIPMENT_DAMAGED" || player.ship.equipmentStatus("EQ_ECM") === "EQUIPMENT_DAMAGED") player.consoleMessage("Auto ECM and/or ECM System DAMAGED!",5)
	else if(missionVariables.autoECM) player.consoleMessage("Auto ECM System ready and enabled.",5);
}

this.shipAttackedWithMissile = function(missile, whom) {
	if(player.ship.equipmentStatus("EQ_AUTOECM") === "EQUIPMENT_OK" && missionVariables.autoECM) {
		if(player.ship.equipmentStatus("EQ_ECM") === "EQUIPMENT_OK") {
			if(player.ship.energy > 32) {
				player.ship.fireECM();
				player.consoleMessage("Missile detected, using ECM!",6); // Use ECM.
			} else player.consoleMessage("LOW Energy - ECM NOT triggered! Missile inbound!",6); // Energy too low to use ECM?
		} else { // ECM N/A!
			player.ship.target = missile;
			player.consoleMessage("ECM N/A - DANGER: Incoming missile!",6);
		} // Target the enemy missile. Panic!!
	}
	if(player.ship.equipmentStatus("EQ_SCANNER_SHOW_MISSILE_TARGET") === "EQUIPMENT_DAMAGED") player.consoleMessage("Missile Targeter offline, unknown missile inbound.",6);	// Missile Scanner/Targeter N/A?
}