| Back to Index | Page generated: Oct 27, 2025, 5:37:22 AM | 
 Expansion HyperRadio ST01 - Ambient
 Expansion HyperRadio ST01 - Ambient| from Expansion Manager's OXP list | from Expansion Manifest | |
|---|---|---|
| Description | This musicpack contains the full album: Lifes path by mindthings - Ambient. Works with HyperRadio 1.x or HyperRadio 2.x with Library OXP. | This musicpack contains the full album: Lifes path by mindthings - Ambient. Works with HyperRadio 1.x or HyperRadio 2.x with Library OXP. | 
| Identifier | oolite.oxp.Svengali.HyperradioST01 | oolite.oxp.Svengali.HyperradioST01 | 
| Title | HyperRadio ST01 - Ambient | HyperRadio ST01 - 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/9/9c/HyperradioST01.oxz | n/a | 
| License | CC BY-NC 2.0 fr | CC BY-NC 2.0 fr | 
| File Size | n/a | |
| Upload date | 1754288271 | 
HYPERRADIO Musicpack Music Add-On: Ambient Track | License URL ---------------------------------------------- 01 | http://creativecommons.org/licenses/by-nc/2.0/fr/ 02 | http://creativecommons.org/licenses/by-nc/2.0/fr/ 03 | http://creativecommons.org/licenses/by-nc/2.0/fr/ 04 | http://creativecommons.org/licenses/by-nc/2.0/fr/ 05 | http://creativecommons.org/licenses/by-nc/2.0/fr/ 06 | http://creativecommons.org/licenses/by-nc/2.0/fr/ 07 | http://creativecommons.org/licenses/by-nc/2.0/fr/ 08 | http://creativecommons.org/licenses/by-nc/2.0/fr/ 09 | http://creativecommons.org/licenses/by-nc/2.0/fr/ 10 | http://creativecommons.org/licenses/by-nc/2.0/fr/ 11 | http://creativecommons.org/licenses/by-nc/2.0/fr/ 12 | http://creativecommons.org/licenses/by-nc/2.0/fr/ artwork | http://creativecommons.org/licenses/by-nc/2.0/fr/ Oolite is a Creative Commons http://creativecommons.org/licenses/by-nc/3.0/ http://creativecommons.org/licenses/by-nc-sa/3.0/ http://creativecommons.org/licenses/by-nc-sa/2.5/it/ 2009 Made by Rustybolts
| Path | |
|---|---|
| Config/script.js | "use strict";
this.name = "hyperRadioST01";
this.author = "Rustybolts";
this.copyright = "CC-by-nc-sa-3.0";
this.description = "Ambient Piano for Library OXP.";
this.version = "2.0";
this.startUpComplete = function () {
	delete this.startUpComplete;
	if (worldScripts.hyperradio) {
		worldScripts.hyperradio.stationList.push("hyperradio_playListST01");
		worldScripts.hyperradio.hyperradio_playListST01 = new Array(
			"Our Lifes, Our Destinies.ogg",
			"Sounds From The Past.ogg",
			"Emotion Vibes.ogg",
			"Night Rains.ogg",
			"Life's Things.ogg",
			"Artificial World.ogg",
			"Cold Water.ogg",
			"Exponential Tears.ogg",
			"Reversal Situation.ogg",
			"The Last Time On This Earth.ogg",
			"AfterLife.ogg",
			"Rebirth.ogg"
		);
	}
	if (worldScripts.Lib_Music) {
		worldScripts.Lib_Music._addChannel({
			name: "Ambient Piano", radio: true, sounds: [
				{ snd: "Our Lifes, Our Destinies.ogg", dur: 132 },
				{ snd: "Sounds From The Past.ogg", dur: 256 },
				{ snd: "Emotion Vibes.ogg", dur: 292 },
				{ snd: "Night Rains.ogg", dur: 204 },
				{ snd: "Life's Things.ogg", dur: 192 },
				{ snd: "Artificial World.ogg", dur: 161 },
				{ snd: "Cold Water.ogg", dur: 253 },
				{ snd: "Exponential Tears.ogg", dur: 208 },
				{ snd: "Reversal Situation.ogg", dur: 124 },
				{ snd: "The Last Time On This Earth.ogg", dur: 116 },
				{ snd: "AfterLife.ogg", dur: 170 }
			]
		});
	}
} |