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

Expansion HyperRadio JFRG01 - Jazz, Funk, RnB and Groove

Content

Warnings

  1. http://wiki.alioth.net/index.php/HyperRadio%20JFRG01%20-%20Jazz,%20Funk,%20RnB%20and%20Groove -> 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 Jazz, Funk, RnB and Groove songs. Works with HyperRadio 1.x or HyperRadio 2.x with Library OXP. This musicpack contains 5 Jazz, Funk, RnB and Groove songs. Works with HyperRadio 1.x or HyperRadio 2.x with Library OXP.
Identifier oolite.oxp.Svengali.HyperradioJFRG01 oolite.oxp.Svengali.HyperradioJFRG01
Title HyperRadio JFRG01 - Jazz, Funk, RnB and Groove HyperRadio JFRG01 - Jazz, Funk, RnB and Groove
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/a/a7/HyperradioJFRG01.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 1754288133

Documentation

Hyperradio JFRG01 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 Jazz Funk RnB Groove - 01\ulnone\b0\par
\fs20 Music Add-On: Jazz Funk RnB Groove\par
\par
Scripts and documentation under CC-by-nc-sa-3.0\par
Musicfiles licenses see below\par
\par
Droopy Contini - Dewey Square\par
License:\tab CC-by-nc-sa-3.0\par
Source: \tab http://www.rawbounce.co.cc\par
Link:\tab\tab http://www.rawbounce.co.cc\par
\par
La Rabona - Vamos a Reconquistar\par
License:\tab CC-by-nc-sa-3.0\par
Source:\tab\tab http://freemusic.freeculture.org\par
Link:\tab\tab http://www.larabona.cl\par
\par
Lasswell - Drunk in a smokey bar drinking an imperial porter mix\par
License:\tab CC-by-nc-3.0\par
Source:\tab\tab http://www.ccmixter.org\par
Link:\tab\tab http://ccmixter.org/people/lazztunes07\par
\par
Luc Bartoli - Hassan's Dream\par
License:\tab CC-by-nc-sa-3.0\par
Source: \tab http://www.jamendo.com\par
Link:\tab\tab http://www.rawbounce.co.cc\par
\par
Matt Pepper Trio - J'ai demande au soleil\par
License:\tab CC-by-nc-sa-2.0/fr\par
Source:\tab\tab http://www.jamendo.com\par
Link:\tab\tab http://www.mattpeppertrio.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/3.0/\par
http://creativecommons.org/licenses/by-nc-sa/3.0/\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 = "hyperRadioJFRG01";
this.author = "Svengali";
this.copyright = "CC-by-nc-sa-3.0";
this.description = "Jazz Funk RnB Groove for Library OXP.";
this.version = "2.0";

this.startUpComplete = function () {
	delete this.startUpComplete;
	if (worldScripts.hyperradio) {
		worldScripts.hyperradio.stationList.push("hyperradio_playListJFRG01");
		worldScripts.hyperradio.hyperradio_playListJFRG01 = new Array(
			"Droopy_Contini-Dewey_Square.ogg",
			"La_Rabona-Vamos_a_Reconquistar.ogg",
			"Lasswell-Drunk_In_A_Smokey_Bar_Drinking_An_Imperial_Porter_Mix.ogg",
			"Luc_Bartoli-Hassans_Dream.ogg",
			"Matt_Pepper_Trio-Jai_demande_au_soleil.ogg"
		);
	}
	if (worldScripts.Lib_Music) {
		worldScripts.Lib_Music._addChannel({
			name: "Jazz/Funk/RnB/Groove", radio: true, sounds: [
				{ snd: "Droopy_Contini-Dewey_Square.ogg", dur: 281 },
				{ snd: "La_Rabona-Vamos_a_Reconquistar.ogg", dur: 225 },
				{ snd: "Lasswell-Drunk_In_A_Smokey_Bar_Drinking_An_Imperial_Porter_Mix.ogg", dur: 197 },
				{ snd: "Luc_Bartoli-Hassans_Dream.ogg", dur: 341 },
				{ snd: "Matt_Pepper_Trio-Jai_demande_au_soleil.ogg", dur: 312 }
			]
		});
	}
};