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