Steam 설치
로그인
|
언어
简体中文(중국어 간체)
繁體中文(중국어 번체)
日本語(일본어)
ไทย(태국어)
Български(불가리아어)
Čeština(체코어)
Dansk(덴마크어)
Deutsch(독일어)
English(영어)
Español - España(스페인어 - 스페인)
Español - Latinoamérica(스페인어 - 중남미)
Ελληνικά(그리스어)
Français(프랑스어)
Italiano(이탈리아어)
Bahasa Indonesia(인도네시아어)
Magyar(헝가리어)
Nederlands(네덜란드어)
Norsk(노르웨이어)
Polski(폴란드어)
Português(포르투갈어 - 포르투갈)
Português - Brasil(포르투갈어 - 브라질)
Română(루마니아어)
Русский(러시아어)
Suomi(핀란드어)
Svenska(스웨덴어)
Türkçe(튀르키예어)
Tiếng Việt(베트남어)
Українська(우크라이나어)
번역 관련 문제 보고









А может быть я тупой как пробка и плохо читаю, ктож знает?
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!