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

Expansion HyperRadio ST02 - Ambient

Content

Warnings

  1. http://wiki.alioth.net/index.php/HyperRadio%20ST02%20-%20Ambient -> 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 songs by PeerGynt Lobogris - Ambient. Works with HyperRadio 1.x or HyperRadio 2.x with Library OXP. This musicpack contains 5 songs by PeerGynt Lobogris - Ambient. Works with HyperRadio 1.x or HyperRadio 2.x with Library OXP.
Identifier oolite.oxp.Svengali.HyperradioST02 oolite.oxp.Svengali.HyperradioST02
Title HyperRadio ST02 - Ambient HyperRadio ST02 - Ambient
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/e/e3/HyperradioST02.oxz n/a
License CC BY-NC-SA 3 CC BY-NC-SA 3
File Size n/a
Upload date 1754394391

Documentation

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 = "hyperRadioST02";
this.author = "Rustybolts";
this.copyright = "CC-by-nc-sa-3.0";
this.description = "Selection from Peergynt Lobogris - Ambient Electronic";
this.version = "2.0";

this.startUpComplete = function () {
	delete this.startUpComplete;
	if (worldScripts.hyperradio) {
		worldScripts.hyperradio.stationList.push("hyperradio_playListST02");
		worldScripts.hyperradio.hyperradio_playListST02 = new Array(
			"Peergynt_Lobogris-A_drop_in_the_universe.ogg",
			"Peergynt_Lobogris-Elissa_2010.ogg",
			"Peergynt_Lobogris-Flying_on_moonlight.ogg",
			"Peergynt_Lobogris-I_need_a_dream_to_survive.ogg",
			"Peergynt_Lobogris-Sensual_touch.ogg"
		);
	}
	if (worldScripts.Lib_Music) {
		worldScripts.Lib_Music._addChannel({
			name: "Ambient Electronic", radio: true, sounds: [
				{ snd: "Peergynt_Lobogris-A_drop_in_the_universe.ogg", dur: 266 },
				{ snd: "Peergynt_Lobogris-Elissa_2010.ogg", dur: 296 },
				{ snd: "Peergynt_Lobogris-Flying_on_moonlight.ogg", dur: 231 },
				{ snd: "Peergynt_Lobogris-I_need_a_dream_to_survive.ogg", dur: 214 },
				{ snd: "Peergynt_Lobogris-Sensual_touch.ogg", dur: 234 }
			]
		});
	}
}