安装 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!