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

Expansion HyperRadio ST03 - Ambient

Content

Warnings

  1. http://wiki.alioth.net/index.php/HyperRadio%20ST03%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 20 Ambient piano songs, sourced from FreePik. Works with HyperRadio 1.x or HyperRadio 2.x with Library OXP. This musicpack contains 20 Ambient piano songs, sourced from FreePik. Works with HyperRadio 1.x or HyperRadio 2.x with Library OXP.
Identifier oolite.oxp.phkb.HyperradioST03 oolite.oxp.phkb.HyperradioST03
Title HyperRadio ST03 - Ambient HyperRadio ST03 - Ambient
Category Ambience Ambience
Author phkb phkb
Version 1.0 1.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/0/0d/HyperradioST03.oxz n/a
License CC BY-NC-SA 4 CC BY-NC-SA 4
File Size n/a
Upload date 1754531120

Documentation

readme.txt

Ambient Piano 2 Radio for HyperRadio
by phkb

Links to all songs:
https://www.freepik.com/audio/tune/ambient-bliss
https://www.freepik.com/audio/tune/piano-reverie
https://www.freepik.com/audio/tune/mirage
https://www.freepik.com/audio/tune/ambient-sea
https://www.freepik.com/audio/tune/analog-swan
https://www.freepik.com/audio/tune/urban-oasis
https://www.freepik.com/audio/tune/keys-of-memory
https://www.freepik.com/audio/tune/silent-fall
https://www.freepik.com/audio/tune/underwater
https://www.freepik.com/audio/tune/peninsula
https://www.freepik.com/audio/tune/axial-tilt
https://www.freepik.com/audio/tune/warm-embrace
https://www.freepik.com/audio/tune/granular-pause
https://www.freepik.com/audio/tune/analog-illusion
https://www.freepik.com/audio/tune/floating-somethings
https://www.freepik.com/audio/tune/emperor
https://www.freepik.com/audio/tune/bilocation
https://www.freepik.com/audio/tune/glorious-entry
https://www.freepik.com/audio/tune/zen-static
https://www.freepik.com/audio/tune/arnalds

All songs licenced as "Free".

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 = "hyperradioST03";
this.author = "phkb";
this.copyright = "CC-by-nc-sa-4.0";
this.description = "Ambient Piano 2";
this.version = "1.0";

this.startUpComplete = function () {
    delete this.startUpComplete;
    if (worldScripts.hyperradio) {
        worldScripts.hyperradio.stationList.push("hyperradio_playListST03");
        worldScripts.hyperradio.hyperradio_playListST03 = new Array(
            "freepik-ambient bliss.ogg",
            "freepik-piano reverie.ogg",
            "freepik-mirage.ogg",
            "freepik-ambient sea.ogg",
            "freepik-analog swan.ogg",
            "freepik-urban oasis.ogg",
            "freepik-keys of memory.ogg",
            "freepik-silent fall.ogg",
            "freepik-underwater.ogg",
            "freepik-peninsula.ogg",
            "freepik-axial tilt.ogg",
            "freepik-warm embrace.ogg",
            "freepik-granular pause.ogg",
            "freepik-analog illusion.ogg",
            "freepik-floating somethings.ogg",
            "freepik-emperor.ogg",
            "freepik-bilocation.ogg",
            "freepik-glorious entry.ogg",
            "freepik-zen static.ogg",
            "freepik-arnalds.ogg",
            "freepik-synthetic sunset.ogg",
            "freepik-synthetica dreamsink.ogg",
            "freepik-vhs vision.ogg"
        );
    }
    if (worldScripts.Lib_Music) {
        worldScripts.Lib_Music._addChannel({
            name: "Ambient Piano 2", radio: true, sounds: [
                { snd: "freepik-ambient bliss.ogg", dur: 128 },
                { snd: "freepik-piano reverie.ogg", dur: 121 },
                { snd: "freepik-mirage.ogg", dur: 70 },
                { snd: "freepik-ambient sea.ogg", dur: 189 },
                { snd: "freepik-analog swan.ogg", dur: 148 },
                { snd: "freepik-urban oasis.ogg", dur: 174 },
                { snd: "freepik-keys of memory.ogg", dur: 97 },
                { snd: "freepik-silent fall.ogg", dur: 90 },
                { snd: "freepik-underwater.ogg", dur: 80 },
                { snd: "freepik-peninsula.ogg", dur: 134 },
                { snd: "freepik-axial tilt.ogg", dur: 183 },
                { snd: "freepik-warm embrace.ogg", dur: 171 },
                { snd: "freepik-granular pause.ogg", dur: 132 },
                { snd: "freepik-analog illusion.ogg", dur: 122 },
                { snd: "freepik-floating somethings.ogg", dur: 163 },
                { snd: "freepik-emperor.ogg", dur: 123 },
                { snd: "freepik-bilocation.ogg", dur: 116 },
                { snd: "freepik-glorious entry.ogg", dur: 125 },
                { snd: "freepik-zen static.ogg", dur: 166 },
                { snd: "freepik-arnalds.ogg", dur: 126 },
            ]
        });
    }
}