Steam installeren
inloggen
|
taal
简体中文 (Chinees, vereenvoudigd)
繁體中文 (Chinees, traditioneel)
日本語 (Japans)
한국어 (Koreaans)
ไทย (Thai)
Български (Bulgaars)
Čeština (Tsjechisch)
Dansk (Deens)
Deutsch (Duits)
English (Engels)
Español-España (Spaans - Spanje)
Español - Latinoamérica (Spaans - Latijns-Amerika)
Ελληνικά (Grieks)
Français (Frans)
Italiano (Italiaans)
Bahasa Indonesia (Indonesisch)
Magyar (Hongaars)
Norsk (Noors)
Polski (Pools)
Português (Portugees - Portugal)
Português - Brasil (Braziliaans-Portugees)
Română (Roemeens)
Русский (Russisch)
Suomi (Fins)
Svenska (Zweeds)
Türkçe (Turks)
Tiếng Việt (Vietnamees)
Українська (Oekraïens)
Een vertaalprobleem melden
Thank you for your corrections, links and reply.
After few iterations of correcting the code and paths it finally working. There was some missunderstand, with proper .ogg files location and .bed files that should only be "inside" of packed mode. Thank you!
or maybe you can just download original soundtrack somewhere from the internet and convert it into ogg
I probably said too much somewhere. Just be sure, that your .bed files in data/music folder. And you dont have any extra comma and backets in code. Also be sure that you have only bracket in end. Your code not should finish like " }, " with comma. Nothing will work! I remember when i been worked with this mod, too many songs and i didn't spotted that comma. I just waste couple days and thinked what i did wrong.
Also i think that you better need replace your folder name "songs1" into "music". Cuz i dont know, will it work or not. When i been making mod, i used only "music" name folder
Loop = {
Count = 8,
[1] = {
File = "data/songs1/19pod.ogg",
Artist = "P.O.D.",
Song = "School Of Hard Knocks",
StartPos = 0, 👈 you forgot to add this line
},👈 there should be a comma
}👈you forgot to add a bracket at the end of the code
So your code should looks like:
Loop = {
Count = 8,
[1] = {
File = "data/music/namefale1.ogg",
Artist = "artist name",
Song = "song name",
StartPos = 0,
},
[2] = {
File = "data/music/namefale2.ogg",
Artist = "artist name",
Song = "song name",
StartPos = 0,
},
[3] = {
File = "data/music/namefale3.ogg",
Artist = "artist name",
Song = "song name",
StartPos = 0,
},
}
https://gtm.steamproxy.vip/sharedfiles/filedetails/?id=3298086163 - you can check this guide, cuz when i start making my first music mod i used this guide. But it was have some mistakes. I don't know how it looks right now.
I think you need remember some two things.
First. "Data" folder should have "music" folder too. So it's should be like data/music/playlist_title.bed
data/music/playlist_ingame.bed
data/music/playlist_stunt.bed
i dont know, can it work with your folder name "songs1". So your .bed files should then be like
data/songs1/playlist_title.bed
data/songs1/playlist_ingame.bed
data/songs1/playlist_stunt.bed
I've tried to create mod: audiofiles format .off, in .txt configs, like playlist_ingame included everything like:
Loop = {
Count = 8,
[1] = {
File = "data/songs1/19pod.ogg",
Artist = "P.O.D.",
Song = "School Of Hard Knocks",
}
but when I test it, in game there is original songs, and nothing else. Thanks in advance!