Back to Index Page generated: Sep 1, 2025, 4:12:03 AM

Expansion HyperRadio HH01 - Hardrock and Metal

Content

Warnings

  1. http://wiki.alioth.net/index.php/HyperRadio%20HH01%20-%20Hardrock%20and%20Metal -> 404 Not Found
  2. Low hanging fuit: Information URL exists...

Manifest

from Expansion Manager's OXP list from Expansion Manifest
Description This musicpack contains 5 Hardrock and Metal songs. Works with HyperRadio 1.x or HyperRadio 2.x with Library OXP. This musicpack contains 5 Hardrock and Metal songs. Works with HyperRadio 1.x or HyperRadio 2.x with Library OXP.
Identifier oolite.oxp.Svengali.HyperradioHH01 oolite.oxp.Svengali.HyperradioHH01
Title HyperRadio HH01 - Hardrock and Metal HyperRadio HH01 - Hardrock and Metal
Category Ambience Ambience
Author Svengali Svengali
Version 2.0 2.0
Tags
Required Oolite Version
Maximum Oolite Version
Required Expansions
Optional Expansions
Conflict Expansions
Information URL http://wiki.alioth.net/index.php/Hyperradio_Musicpacks n/a
Download URL https://wiki.alioth.net/img_auth.php/b/ba/HyperradioHH01.oxz n/a
License CC BY-NC-SA variations, see in the readme CC BY-NC-SA variations, see in the readme
File Size n/a
Upload date 1754288025

Documentation

Hyperradio HH01 Readme.rtf

{\rtf1\ansi\ansicpg1252\deff0{\fonttbl{\f0\fswiss\fprq2\fcharset0 Helvetica;}{\f1\fswiss\fcharset0 Arial;}}
{\*\generator Msftedit 5.41.15.1507;}\viewkind4\uc1\pard\lang1031\ul\b\f0\fs28 HYPERRADIO Musicpack Hard 'n Heavy - 01\ulnone\b0\par
\fs20 Music Add-On: For the Hard 'n Heavy Freaks\par
\par
Scripts and documentation under CC-by-nc-sa-3.0\par
Musicfiles licenses see below\par
\par
Aching Beauty - Steps\par
License:\tab CC-by-nc-sa-3.0\par
Source: \tab http://www.jamendo.com\par
Link:\tab\tab http://achingbeauty.free.fr/\par
\par
Antarhes - Different Way\par
License:\tab CC-by-nc-sa-2.5\par
Source: \tab http://www.jamendo.com\par
Link:\tab\tab http://www.antarhes.com/\par
\par
Aygan - Now it's over\par
License:\tab CC-by-nc-sa-3.0\par
Source: \tab http://www.jamendo.com\par
Link:\tab\tab http://www.aygan.com.br/\par
\par
Holy Pain - Last Sigh\par
License: \tab CC-by-nc-sa-2.0/fr\par
Source: \tab http://www.jamendo.com\par
Link:\tab\tab http://www.holy-pain.com\par
\par
Red Light Rippers - Addicted\par
License:\tab CC-by-nc-sa-2.5\par
Source:\tab\tab http://www.jamendo.com\par
Link:\tab\tab http://www.redlightrippers.com\par
\par
Oolite is a Creative Commons protected project by Giles Williams.\par
Oolite is a space simulation game developed by Giles Williams\par
based on Elite by Ian Bell and David Braben. All rights reserved.\par
\par
http://creativecommons.org/licenses/by-nc-sa/3.0/\par
http://creativecommons.org/licenses/by-nc-sa/2.5/\par
http://creativecommons.org/licenses/by-nc-sa/2.0/fr/\par
____________________________________________________________________________________________________________________\par
\par
Sept 2008 Made by Svengali\par
____________________________________________________________________________________________________________________\par
\f1\par
}

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
"use strict";
this.name = "hyperRadioHH01";
this.author = "Svengali";
this.copyright = "CC-by-nc-sa-3.0";
this.description = "Hard n Heavy for Library OXP.";
this.version = "2.0";

this.startUpComplete = function () {
	delete this.startUpComplete;
	if (worldScripts.hyperradio) {
		worldScripts.hyperradio.stationList.push("hyperradio_playListHH01");
		worldScripts.hyperradio.hyperradio_playListHH01 = new Array(
			"Aching_Beauty-Steps.ogg",
			"Antarhes-Different_Way.ogg",
			"Aygan-Now_Its_Over.ogg",
			"Holy_Pain-Last_Sigh.ogg",
			"Red_Light_Rippers-Addicted.ogg"
		);
	}
	if (worldScripts.Lib_Music) {
		worldScripts.Lib_Music._addChannel({
			name: "Hard n Heavy", radio: true, sounds: [
				{ snd: "Aching_Beauty-Steps.ogg", dur: 239 },
				{ snd: "Antarhes-Different_Way.ogg", dur: 222 },
				{ snd: "Aygan-Now_Its_Over.ogg", dur: 275 },
				{ snd: "Holy_Pain-Last_Sigh.ogg", dur: 259 },
				{ snd: "Red_Light_Rippers-Addicted.ogg", dur: 238 }
			]
		});
	}
};