Cyberpunk 2077
0 of 0

File information

Last updated

Original upload

Created by

Hyyrokkin

Uploaded by

Hyyrokkin

Virus scan

Safe to use

Tags for this mod

About this mod

THIS IS CYBERGORE!
The first Rawstyle Radio in Night City with over 3+ hours of Music from 60+ hand selected Songs

Requirements
Permissions and credits
Changelogs
Now without copyright infringement.


I did not find a single Rawstyle Radio on Nexus, so Idecided to make it myself.
I carefully selected the best Rawstyle Tracks I could findand bundled them up in a Spotify Playlist and added them to the Game at “57.3
Cybergore Radio” with a custom icon.
 
This Radio includes Bangers from DEEZL, Mutilator, Sickmode,Rooler, Nutkix, Dual Damage and many more. There are also 3 Uptempo Tracks so
things don’t get too boring.
 
After the Mod was taken down because of copyrightinfringement (I was admittedly putting the Song files in the Mod for download),
I deleted all Songs to which I don’t have the rights. Instead, I made a bit of code to download the Songs automatically over YouTube, which doesn’t infringe on any
copyright by using the open spotify-downloader Project.

Note: Users are responsible for their actions and potential legal consequences. We do not support unauthorized downloading of copyrighted material and take no responsibility for user actions.

Included Songs without extra Downloads by: Nutkix

 
Requires RadioExt & Cyber EngineTweaks
 
Installation:
·  Install the dependencies
·  Open the mod's zip and copy the folders within
·  Open your Cyberpunk 2077 folder (C:\Program Files(x86)\Steam\steamapps\common\Cyberpunk 2077 by default)
·  Paste the folders from the zip
·  Now you have to find the songs from the Spotify Playlistyourself or run the code in a .bat file in the same folder as above 
 
 
If you use Vortex just press Yes if it says that no structure is found
 
Code to put in a text file and rename it to .bat:

set mainPath=%~dp0
set radioPath=bin\x64\plugins\cyber_engine_tweaks\mods\radioExt\radios\Cybergore Radio
set spotifyLink=https://open.spotify.com/playlist/7GbiSYhn99xHDR6yL31Rwu?si=5363fd4713d64f97
set spotDlPath=https://github.com/spotDL/spotify-downloader/releases/download/v4.2.4/spotdl-4.2.4-win32.exe
 
mkdir spotdl
cd spotdl
if not exist spotdl.exe curl.exe -L %spotDlPath% > spotdl.exe
if not exist "%USERPROFILE%\.spotdl\ffmpeg.exe" spotdl --download-ffmpeg
 
cd "%mainpath%%radioPath%"
"%mainPath%spotdl\spotdl.exe" %spotifyLink%
 
RMDIR /S /Q "%mainPath%spotdl"
RMDIR /S /Q "%USERPROFILE%\.spotdl"
 
pause