| Back to Index | Page generated: Oct 27, 2025, 5:37:22 AM | 
 Expansion HyperRadio PSY01 - Ambient Psychedelic
 Expansion HyperRadio PSY01 - Ambient Psychedelic| from Expansion Manager's OXP list | from Expansion Manifest | |
|---|---|---|
| Description | This musicpack contains 5 Ambient Psychedelic songs. Works with HyperRadio 1.x or HyperRadio 2.x with Library OXP. | This musicpack contains 5 Ambient Psychedelic songs. Works with HyperRadio 1.x or HyperRadio 2.x with Library OXP. | 
| Identifier | oolite.oxp.Svengali.HyperradioPSY01 | oolite.oxp.Svengali.HyperradioPSY01 | 
| Title | HyperRadio PSY01 - Ambient Psychedelic | HyperRadio PSY01 - Ambient Psychedelic | 
| 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/3/32/HyperradioPSY01.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 | 1754288181 | 
{\rtf1\ansi\ansicpg1252\deff0{\fonttbl{\f0\fswiss\fprq2\fcharset0 Helvetica;}{\f1\fswiss\fcharset0 Arial;}}
{\*\generator Msftedit 5.41.15.1515;}\viewkind4\uc1\pard\lang1031\ul\b\f0\fs28 HYPERRADIO Musicpack Ambient Psychedelic - 01\par
\ulnone\b0\fs20 Music Add-On: Ambient Psychedelic\par
\par
Scripts and documentation under CC-by-nc-sa-3.0\par
Musicfiles licenses see below\par
\par
Supernova \endash  Love (CD Single)\par
License:\tab CC-by-nc-sa-2.5\par
Source:\tab\tab http://www.jamendo.com/en/album/7201\par
Link:\tab\tab http://www.jamendo.com/en/artist/supernova\par
\par
mindthings \endash  Emotion Vibes\par
License:\tab CC-by-nc-sa-2.0\par
Source:\tab\tab http://www.jamendo.com/en/album/4219\par
Link:\tab\tab http://www.jamendo.com/en/artist/mindthings\par
\par
paniq \endash  Occidental Nemesis\par
License:\tab CC-by-sa-3.0\par
Source:\tab\tab http://www.jamendo.com/en/album/22879\par
Link:\tab\tab http://www.jamendo.com/en/artist/paniq_(2)\par
\par
SoLaRiS \endash  Most Haunted\par
License:\tab CC-by-nc-sa-3.0\par
Source: \tab http://www.jamendo.com/en/album/17288\par
Link:\tab\tab http://www.jamendo.com/en/artist/SoLaRiS_(5)\par
\par
Vate \endash  Diablo (en vivo)\par
License:\tab CC-by-nc-sa-2.5\par
Source:\tab\tab http://www.jamendo.com/en/album/1499\par
Link:\tab\tab http://www.jamendo.com/en/artist/vate\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/3.0/\par
http://creativecommons.org/licenses/by-nc-sa/3.0/\par
http://creativecommons.org/licenses/by-nc-sa/2.5/it/\par
____________________________________________________________________________________________________________________\par
\par
April 2009 Made by bacontube\par
____________________________________________________________________________________________________________________\par
\f1\par
}
 
        
                  
        | Path | |
|---|---|
| Config/script.js | "use strict";
this.name = "hyperRadioPSY01";
this.author = "bacontube";
this.copyright = "CC-by-nc-sa-3.0";
this.description = "Ambient Psychedelic for the HYPERRADIO v1.11 or higher.";
this.version = "2.0";
this.startUpComplete = function () {
	delete this.startUpComplete;
	if (worldScripts.hyperradio) {
		worldScripts.hyperradio.stationList.push("hyperradio_playListPSY01");
		worldScripts.hyperradio.hyperradio_playListPSY01 = new Array(
			"SuperNova-Love.ogg",
			"mindthings-Emotion_Vibes.ogg",
			"paniq-occidental_nemesis.ogg",
			"SoLaRiS-Most_Haunted.ogg",
			"Vate-Diablo_(en vivo).ogg"
		);
	}
	if (worldScripts.Lib_Music) {
		worldScripts.Lib_Music._addChannel({
			name: "Ambient Psychedelic", radio: true, sounds: [
				{ snd: "SuperNova-Love.ogg", dur: 477 },
				{ snd: "mindthings-Emotion_Vibes.ogg", dur: 292 },
				{ snd: "paniq-occidental_nemesis.ogg", dur: 248 },
				{ snd: "SoLaRiS-Most_Haunted.ogg", dur: 254 },
				{ snd: "Vate-Diablo_(en vivo).ogg", dur: 295 }
			]
		});
	}
}; |