Config/script.js |
"use strict";
this.name = "hyperradioSYN01";
this.author = "phkb";
this.copyright = "CC-by-nc-sa-4.0";
this.description = "Synthwave";
this.version = "1.0";
this.startUpComplete = function () {
delete this.startUpComplete;
if (worldScripts.hyperradio) {
worldScripts.hyperradio.stationList.push("hyperradio_playListSYN01");
worldScripts.hyperradio.hyperradio_playListSYN01 = new Array(
"freepik-virtual sky.ogg",
"freepik-crystal synth.ogg",
"freepik-crywave confessions.ogg",
"freepik-cyber crisis.ogg",
"freepik-cyber glow.ogg",
"freepik-cyber pulse.ogg",
"freepik-cybernetic daydream.ogg",
"freepik-dreamwave.ogg",
"freepik-hyperwave.ogg",
"freepik-mellow motion.ogg",
"freepik-neon nostalgia.ogg",
"freepik-pixel paradise.ogg",
"freepik-resonance.ogg",
"freepik-retro love.ogg",
"freepik-retro strobe.ogg",
"freepik-sidelong glance.ogg",
"freepik-skywave.ogg",
"freepik-synth saboteur.ogg",
"freepik-synthetic lift.ogg",
"freepik-synthetic overtime.ogg",
"freepik-synthetic sunset.ogg",
"freepik-synthetica dreamsink.ogg",
"freepik-vhs vision.ogg"
);
}
if (worldScripts.Lib_Music) {
worldScripts.Lib_Music._addChannel({
name: "Synthwave", radio: true, sounds: [
{ snd: "freepik-virtual sky.ogg", dur: 92 },
{ snd: "freepik-crystal synth.ogg", dur: 239 },
{ snd: "freepik-crywave confessions.ogg", dur: 109 },
{ snd: "freepik-cyber crisis.ogg", dur: 195 },
{ snd: "freepik-cyber glow.ogg", dur: 240 },
{ snd: "freepik-cyber pulse.ogg", dur: 199 },
{ snd: "freepik-cybernetic daydream.ogg", dur: 97 },
{ snd: "freepik-dreamwave.ogg", dur: 103 },
{ snd: "freepik-hyperwave.ogg", dur: 92 },
{ snd: "freepik-mellow motion.ogg", dur: 100 },
{ snd: "freepik-neon nostalgia.ogg", dur: 108 },
{ snd: "freepik-pixel paradise.ogg", dur: 108 },
{ snd: "freepik-resonance.ogg", dur: 208 },
{ snd: "freepik-retro love.ogg", dur: 205 },
{ snd: "freepik-retro strobe.ogg", dur: 147 },
{ snd: "freepik-sidelong glance.ogg", dur: 177 },
{ snd: "freepik-skywave.ogg", dur: 210 },
{ snd: "freepik-synth saboteur.ogg", dur: 170 },
{ snd: "freepik-synthetic lift.ogg", dur: 104 },
{ snd: "freepik-synthetic overtime.ogg", dur: 109 },
{ snd: "freepik-synthetic sunset.ogg", dur: 172 },
{ snd: "freepik-synthetica dreamsink.ogg", dur: 111 },
{ snd: "freepik-vhs vision.ogg", dur: 92 }
]
});
}
} |