| Back to Index | Page generated: Oct 27, 2025, 5:37:22 AM | 
 Expansion HyperRadio ROCK01 - Instrumental Rock
 Expansion HyperRadio ROCK01 - Instrumental Rock| from Expansion Manager's OXP list | from Expansion Manifest | |
|---|---|---|
| Description | This musicpack contains 22 Instrumental Rock tracks, sourced from FreePik. Works with HyperRadio 1.x or HyperRadio 2.x with Library OXP. | This musicpack contains 22 Instrumental Rock tracks, sourced from FreePik. Works with HyperRadio 1.x or HyperRadio 2.x with Library OXP. | 
| Identifier | oolite.oxp.phkb.HyperradioROCK01 | oolite.oxp.phkb.HyperradioROCK01 | 
| Title | HyperRadio ROCK01 - Instrumental Rock | HyperRadio ROCK01 - Instrumental Rock | 
| 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/7/79/HyperradioROCK01.oxz | n/a | 
| License | CC BY-NC-SA 4 | CC BY-NC-SA 4 | 
| File Size | n/a | |
| Upload date | 1754288440 | 
Instrumental Rock Radio for HyperRadio by phkb Links to all songs: https://www.freepik.com/audio/tune/phoenix-rising https://www.freepik.com/audio/tune/vicious-reign https://www.freepik.com/audio/tune/live-fast,-die-loud https://www.freepik.com/audio/tune/zeus'-might https://www.freepik.com/audio/tune/drive-alive https://www.freepik.com/audio/tune/grunge-is-dead https://www.freepik.com/audio/tune/love-and-war https://www.freepik.com/audio/tune/ghosts-of-yesterday https://www.freepik.com/audio/tune/veins-of-iron https://www.freepik.com/audio/tune/hazemaze https://www.freepik.com/audio/tune/no-way-back https://www.freepik.com/audio/tune/runway-houses https://www.freepik.com/audio/tune/sun-lifter https://www.freepik.com/audio/tune/silent-collapse https://www.freepik.com/audio/tune/sunderberry-dream https://www.freepik.com/audio/tune/electric-thunder https://www.freepik.com/audio/tune/seismic-riffs https://www.freepik.com/audio/tune/rock-&-roll-fever https://www.freepik.com/audio/tune/rust-&-rock https://www.freepik.com/audio/tune/inferno-jam https://www.freepik.com/audio/tune/breaking-chains https://www.freepik.com/audio/tune/poseidon's-wrath All songs licenced as "Free".
| Path | |
|---|---|
| Config/script.js | "use strict";
this.name = "hyperradioROCK01";
this.author = "phkb";
this.copyright = "CC-by-nc-sa-4.0";
this.description = "Instrumental Rock tracks for Hyperradio";
this.version = "1.0";
this.startUpComplete = function () {
    delete this.startUpComplete;
    if (worldScripts.hyperradio) {
        worldScripts.hyperradio.stationList.push("hyperradio_playListROCK01");
        worldScripts.hyperradio.hyperradio_playListROCK01 = new Array(
            "freepik-phoenix rising.ogg",
            "freepik-vicious reign.ogg",
            "freepik-live fast die loud.ogg",
            "freepik-zeus might.ogg",
            "freepik-drive alive.ogg",
            "freepik-grunge is dead.ogg",
            "freepik-love and war.ogg",
            "freepik-ghosts of yesterday.ogg",
            "freepik-veins of iron.ogg",
            "freepik-hazemaze.ogg",
            "freepik-no way back.ogg",
            "freepik-runway houses.ogg",
            "freepik-sun lifter.ogg",
            "freepik-silent collapse.ogg",
            "freepik-sunderberry dream.ogg",
            "freepik-electric thunder.ogg",
            "freepik-seismic riffs.ogg",
            "freepik-rock and roll fever.ogg",
            "freepik-rust and rock.ogg",
            "freepik-inferno jam.ogg",
            "freepik-breaking chains.ogg",
            "freepik-poseidons wrath.ogg"
        );
    }
    if (worldScripts.Lib_Music) {
        worldScripts.Lib_Music._addChannel({
            name: "Instrumental Rock", radio: true, sounds: [
                { snd: "freepik-phoenix rising.ogg", dur: 187 },
                { snd: "freepik-vicious reign.ogg", dur: 101 },
                { snd: "freepik-live fast die loud.ogg", dur: 106 },
                { snd: "freepik-zeus might.ogg", dur: 148 },
                { snd: "freepik-drive alive.ogg", dur: 124 },
                { snd: "freepik-grunge is dead.ogg", dur: 110 },
                { snd: "freepik-love and war.ogg", dur: 129 },
                { snd: "freepik-ghosts of yesterday.ogg", dur: 173 },
                { snd: "freepik-veins of iron.ogg", dur: 195 },
                { snd: "freepik-hazemaze.ogg", dur: 188 },
                { snd: "freepik-no way back.ogg", dur: 202 },
                { snd: "freepik-runway houses.ogg", dur: 108 },
                { snd: "freepik-sun lifter.ogg", dur: 101 },
                { snd: "freepik-silent collapse.ogg", dur: 118 },
                { snd: "freepik-sunderberry dream.ogg", dur: 119 },
                { snd: "freepik-electric thunder.ogg", dur: 171 },
                { snd: "freepik-seismic riffs.ogg", dur: 100 },
                { snd: "freepik-rock and roll fever.ogg", dur: 151 },
                { snd: "freepik-rust and rock.ogg", dur: 139 },
                { snd: "freepik-inferno jam.ogg", dur: 94 },
                { snd: "freepik-breaking chains.ogg", dur: 132 },
                { snd: "freepik-poseidons wrath.ogg", dur: 158 }
            ]
        });
    }
}; |