| 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 }
			]
		});
	}
} |