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

Expansion Untrumbled

Content

Warnings

  1. Information URL mismatch between OXP Manifest and Expansion Manager string length at character position 0

Manifest

from Expansion Manager's OXP list from Expansion Manifest
Description Untrumbled removes a core game feature which some players find irritating, and prevents any possibility of vermin infestation, but does not cure existing infestations. Untrumbled removes a core game feature which some players find irritating, and prevents any possibility of vermin infestation, but does not cure existing infestations.
Identifier oolite.oxp.Wildeblood.Untrumbled oolite.oxp.Wildeblood.Untrumbled
Title Untrumbled Untrumbled
Category Mechanics Mechanics
Author Wildeblood Wildeblood
Version 1.1 1.1
Tags
Required Oolite Version
Maximum Oolite Version
Required Expansions
Optional Expansions
Conflict Expansions
Information URL n/a
Download URL https://wiki.alioth.net/img_auth.php/c/cd/Untrumbled.oxz n/a
License Public domain. Public domain.
File Size n/a
Upload date 1610873474

Documentation

Also read http://wiki.alioth.net/index.php/Untrumbled

Equipment

This expansion declares no equipment. This may be related to warnings.

Ships

This expansion declares no ships. This may be related to warnings.

Models

This expansion declares no models. This may be related to warnings.

Scripts

Path
Config/script.js
this.name    = "Untrumbled";
this.version = "1.1"; // "Wildeblood", "phkb" June 17th, 2015

this.startUp = function () {
	"use strict";
	if (worldScripts["oolite-trumbles"]) {
		for (prop in worldScripts["oolite-trumbles"]) {
			if (prop !== "name" && prop !== "version" && prop !== "oolite_manifest_identifier") delete worldScripts["oolite-trumbles"][prop];
		}
		log(this.name, "Removed oolite-trumbles world script.");
	}
	delete missionVariables.trumbles;
	delete this.startUp;
}