CabConModding
Facebook
Twitter
youtube
Discord
Contact us
RSS
Menu
CabConModding
Home
New
Top
Premium
Rules
FAQ - Frequently Asked Questions
Games
Fornite
Call of Duty: Black Ops 3
Clash of Clans
Grand Theft Auto 5
Apex Legends
Assassin’s Creed Origins
Forums
Premium
Latest posts
What's new
Latest posts
New profile posts
Latest activity
Members
Current visitors
New profile posts
Log in
Register
What's new
Premium
Latest posts
Menu
Log in
Register
Navigation
Install the app
Install
More options
Dark Theme
Contact us
Close Menu
Forums
Gaming
Call of Duty Classics
Call of Duty: Black Ops 1
Call of Duty Black Ops 1 BGamer T5 LAN/Offline Client v0.7
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="SalFisher47" data-source="post: 42677" data-attributes="member: 265837"><p>^ Thanks for your detailed instructions [USER=13940]@dosi[/USER]!</p><p>After some testing it seems we ideed have to run and join the dedicated server first time on a new computer, so that the game can genereate some files in bgData\Profiles\<gameID>. Otherwise we'll get the error I mentioned a few posts above when trying to start a map on Private Match.</p><p>So, to avoid this for a new user, I generated those files according to your instructions, and created some launchers that automatically generate a new <gameID> when not present in bgset.ini, and automatically copy and rename my generated files from 'bgData\profiles\2000000000' folder -</p><p>do not delete it, as it will be used as default profile whenever you delete or change <gameID> in bgset.ini !</p><p>Also, they will use the files from last used profile, if present, when you'll change <gameID> again. Launchers also automatically switch between two versions of steam_api.dll and BO executables I currently use - SSE with PLAZA's sp/mp executables for sp mode, and BGamer with Die_Rache's sp/mp executables.<a href="https://mega.nz/#!bAtgBaTT!cau_GeWu64nA5KM65CTw6AeE-FBc7C1IxKAIkJjYV6M" target="_blank"> ---> bgT5 v0.7 + SSE + Launchers.zip</a></p><p></p><p>Source script for _Black Ops mp.exe looks like this:</p><p>[CODE]$steam_api_mode = IniRead(@ScriptDir & "\BO_Launcher.ini", "Game", "mode", "mp")</p><p>$mp_exe = IniRead(@ScriptDir & "\BO_Launcher.ini", "Executables", "mp", "bgT5Launcher.exe")</p><p>$mp_cmd = IniRead(@ScriptDir & "\BO_Launcher.ini", "Executables", "mp_cmd", "")</p><p>$username = IniRead(@ScriptDir & "\bgSet.ini", "Config", "Nickname", @UserName)</p><p>If $username == "BGamer" Then IniWrite(@ScriptDir & "\bgSet.ini", "Config", "Nickname", @UserName)</p><p></p><p>$gameID = IniRead(@ScriptDir & "\bgSet.ini", "Config", "gameID", "")</p><p>$currentGameID = IniRead(@ScriptDir & "\BO_Launcher.ini", "Game", "gameID", "")</p><p>If $gameID == "" Then</p><p> If $currentGameID == "" Then</p><p> $gameID = Random(2000000001, 2099999999, 1)</p><p> IniWrite(@ScriptDir & "\bgSet.ini", "Config", "gameID", $gameID)</p><p> IniWrite(@ScriptDir & "\BO_Launcher.ini", "Game", "gameID", " " & $gameID)</p><p> DirCreate(@ScriptDir & "\bgData\Profiles\" & $gameID)</p><p> FileCopy(@ScriptDir & "\bgData\Profiles\2000000000\globalstatsCompressed_2000000000", @ScriptDir & "\bgData\Profiles\" & $gameID & "\globalstatsCompressed_" & $gameID, 1)</p><p> FileCopy(@ScriptDir & "\bgData\Profiles\2000000000\mpstatsBasicTraining_2000000000", @ScriptDir & "\bgData\Profiles\" & $gameID & "\mpstatsBasicTraining_" & $gameID, 1)</p><p> FileCopy(@ScriptDir & "\bgData\Profiles\2000000000\mpstatsCompressed_2000000000", @ScriptDir & "\bgData\Profiles\" & $gameID & "\mpstatsCompressed_" & $gameID, 1)</p><p> FileCopy(@ScriptDir & "\bgData\Profiles\2000000000\recentservers.dat_2000000000", @ScriptDir & "\bgData\Profiles\" & $gameID & "\recentservers.dat_" & $gameID, 1)</p><p> FileCopy(@ScriptDir & "\bgData\Profiles\2000000000\spstatsCompressed_2000000000", @ScriptDir & "\bgData\Profiles\" & $gameID & "\spstatsCompressed_" & $gameID, 1)</p><p> FileCopy(@ScriptDir & "\bgData\Public\2000000000_2", @ScriptDir & "\bgData\Public\" & $gameID & "_2", 1)</p><p> Else</p><p> $gameID = Random(2000000001, 2099999999, 1)</p><p> IniWrite(@ScriptDir & "\bgSet.ini", "Config", "gameID", $gameID)</p><p> IniWrite(@ScriptDir & "\BO_Launcher.ini", "Game", "gameID", " " & $gameID)</p><p> DirCreate(@ScriptDir & "\bgData\Profiles\" & $gameID)</p><p> FileMove(@ScriptDir & "\bgData\Profiles\" & $currentGameID & "\globalstatsCompressed_" & $currentGameID, @ScriptDir & "\bgData\Profiles\" & $gameID & "\globalstatsCompressed_" & $gameID, 9)</p><p> FileMove(@ScriptDir & "\bgData\Profiles\" & $currentGameID & "\mpstatsBasicTraining_" & $currentGameID, @ScriptDir & "\bgData\Profiles\" & $gameID & "\mpstatsBasicTraining_" & $gameID, 9)</p><p> FileMove(@ScriptDir & "\bgData\Profiles\" & $currentGameID & "\mpstatsCompressed_" & $currentGameID, @ScriptDir & "\bgData\Profiles\" & $gameID & "\mpstatsCompressed_" & $gameID, 9)</p><p> FileMove(@ScriptDir & "\bgData\Profiles\" & $currentGameID & "\recentservers.dat_" & $currentGameID, @ScriptDir & "\bgData\Profiles\" & $gameID & "\recentservers.dat_" & $gameID, 9)</p><p> FileMove(@ScriptDir & "\bgData\Profiles\" & $currentGameID & "\spstatsCompressed_" & $currentGameID, @ScriptDir & "\bgData\Profiles\" & $gameID & "\spstatsCompressed_" & $gameID, 9)</p><p> FileMove(@ScriptDir & "\bgData\Public\" & $currentGameID & "_2", @ScriptDir & "\bgData\Public\" & $gameID & "_2", 9)</p><p> ;FileDelete(@ScriptDir & "\bgData\Public\" & $currentGameID & "_2")</p><p> DirRemove(@ScriptDir & "\bgData\Profiles\" & $currentGameID, 1)</p><p> EndIf</p><p>Else</p><p> If $currentGameID == "" Then</p><p> IniWrite(@ScriptDir & "\BO_Launcher.ini", "Game", "gameID", " " & $gameID)</p><p> DirCreate(@ScriptDir & "\bgData\Profiles\" & $gameID)</p><p> FileCopy(@ScriptDir & "\bgData\Profiles\2000000000\globalstatsCompressed_2000000000", @ScriptDir & "\bgData\Profiles\" & $gameID & "\globalstatsCompressed_" & $gameID, 1)</p><p> FileCopy(@ScriptDir & "\bgData\Profiles\2000000000\mpstatsBasicTraining_2000000000", @ScriptDir & "\bgData\Profiles\" & $gameID & "\mpstatsBasicTraining_" & $gameID, 1)</p><p> FileCopy(@ScriptDir & "\bgData\Profiles\2000000000\mpstatsCompressed_2000000000", @ScriptDir & "\bgData\Profiles\" & $gameID & "\mpstatsCompressed_" & $gameID, 1)</p><p> FileCopy(@ScriptDir & "\bgData\Profiles\2000000000\recentservers.dat_2000000000", @ScriptDir & "\bgData\Profiles\" & $gameID & "\recentservers.dat_" & $gameID, 1)</p><p> FileCopy(@ScriptDir & "\bgData\Profiles\2000000000\spstatsCompressed_2000000000", @ScriptDir & "\bgData\Profiles\" & $gameID & "\spstatsCompressed_" & $gameID, 1)</p><p> FileCopy(@ScriptDir & "\bgData\Public\2000000000_2", @ScriptDir & "\bgData\Public\" & $gameID & "_2", 1)</p><p> Else</p><p> If $currentGameID <> $gameID Then</p><p> IniWrite(@ScriptDir & "\BO_Launcher.ini", "Game", "gameID", " " & $gameID)</p><p> DirCreate(@ScriptDir & "\bgData\Profiles\" & $gameID)</p><p> FileMove(@ScriptDir & "\bgData\Profiles\" & $currentGameID & "\globalstatsCompressed_" & $currentGameID, @ScriptDir & "\bgData\Profiles\" & $gameID & "\globalstatsCompressed_" & $gameID, 9)</p><p> FileMove(@ScriptDir & "\bgData\Profiles\" & $currentGameID & "\mpstatsBasicTraining_" & $currentGameID, @ScriptDir & "\bgData\Profiles\" & $gameID & "\mpstatsBasicTraining_" & $gameID, 9)</p><p> FileMove(@ScriptDir & "\bgData\Profiles\" & $currentGameID & "\mpstatsCompressed_" & $currentGameID, @ScriptDir & "\bgData\Profiles\" & $gameID & "\mpstatsCompressed_" & $gameID, 9)</p><p> FileMove(@ScriptDir & "\bgData\Profiles\" & $currentGameID & "\recentservers.dat_" & $currentGameID, @ScriptDir & "\bgData\Profiles\" & $gameID & "\recentservers.dat_" & $gameID, 9)</p><p> FileMove(@ScriptDir & "\bgData\Profiles\" & $currentGameID & "\spstatsCompressed_" & $currentGameID, @ScriptDir & "\bgData\Profiles\" & $gameID & "\spstatsCompressed_" & $gameID, 9)</p><p> FileMove(@ScriptDir & "\bgData\Public\" & $currentGameID & "_2", @ScriptDir & "\bgData\Public\" & $gameID & "_2", 9)</p><p> ;FileDelete(@ScriptDir & "\bgData\Public\" & $currentGameID & "_2")</p><p> DirRemove(@ScriptDir & "\bgData\Profiles\" & $currentGameID, 1)</p><p> EndIf</p><p> EndIf</p><p>EndIf</p><p></p><p>If $steam_api_mode == "mp" Then</p><p> Run(@ScriptDir & "\" & $mp_exe & " " & $mp_cmd & " " & $CmdLineRaw)</p><p>ElseIf $steam_api_mode == "zm" Then</p><p> IniWrite(@ScriptDir & "\BO_Launcher.ini", "Game", "mode", " mp")</p><p> Run(@ScriptDir & "\" & $mp_exe & " " & $mp_cmd & " " & $CmdLineRaw)</p><p>Else</p><p> FileMove(@ScriptDir & "\steam_api.dll", @ScriptDir & "\steam_api_valve.dll", 1)</p><p> FileMove(@ScriptDir & "\steam_api_bg.dll", @ScriptDir & "\steam_api.dll", 1)</p><p> FileMove(@ScriptDir & "\BlackOps.exe", @ScriptDir & "\BlackOps_plaza.exe", 1)</p><p> FileMove(@ScriptDir & "\BlackOps_bg.exe", @ScriptDir & "\BlackOps.exe", 1)</p><p> FileMove(@ScriptDir & "\BlackOpsMP.exe", @ScriptDir & "\BlackOpsMP_plaza.exe", 1)</p><p> FileMove(@ScriptDir & "\BlackOpsMP_bg.exe", @ScriptDir & "\BlackOpsMP.exe", 1)</p><p> IniWrite(@ScriptDir & "\BO_Launcher.ini", "Game", "mode", " mp")</p><p> Run(@ScriptDir & "\" & $mp_exe & " " & $mp_cmd & " " & $CmdLineRaw)</p><p>EndIf[/CODE]</p></blockquote><p></p>
[QUOTE="SalFisher47, post: 42677, member: 265837"] ^ Thanks for your detailed instructions [USER=13940]@dosi[/USER]! After some testing it seems we ideed have to run and join the dedicated server first time on a new computer, so that the game can genereate some files in bgData\Profiles\<gameID>. Otherwise we'll get the error I mentioned a few posts above when trying to start a map on Private Match. So, to avoid this for a new user, I generated those files according to your instructions, and created some launchers that automatically generate a new <gameID> when not present in bgset.ini, and automatically copy and rename my generated files from 'bgData\profiles\2000000000' folder - do not delete it, as it will be used as default profile whenever you delete or change <gameID> in bgset.ini ! Also, they will use the files from last used profile, if present, when you'll change <gameID> again. Launchers also automatically switch between two versions of steam_api.dll and BO executables I currently use - SSE with PLAZA's sp/mp executables for sp mode, and BGamer with Die_Rache's sp/mp executables.[URL='https://mega.nz/#!bAtgBaTT!cau_GeWu64nA5KM65CTw6AeE-FBc7C1IxKAIkJjYV6M'] ---> bgT5 v0.7 + SSE + Launchers.zip[/URL] Source script for _Black Ops mp.exe looks like this: [CODE]$steam_api_mode = IniRead(@ScriptDir & "\BO_Launcher.ini", "Game", "mode", "mp") $mp_exe = IniRead(@ScriptDir & "\BO_Launcher.ini", "Executables", "mp", "bgT5Launcher.exe") $mp_cmd = IniRead(@ScriptDir & "\BO_Launcher.ini", "Executables", "mp_cmd", "") $username = IniRead(@ScriptDir & "\bgSet.ini", "Config", "Nickname", @UserName) If $username == "BGamer" Then IniWrite(@ScriptDir & "\bgSet.ini", "Config", "Nickname", @UserName) $gameID = IniRead(@ScriptDir & "\bgSet.ini", "Config", "gameID", "") $currentGameID = IniRead(@ScriptDir & "\BO_Launcher.ini", "Game", "gameID", "") If $gameID == "" Then If $currentGameID == "" Then $gameID = Random(2000000001, 2099999999, 1) IniWrite(@ScriptDir & "\bgSet.ini", "Config", "gameID", $gameID) IniWrite(@ScriptDir & "\BO_Launcher.ini", "Game", "gameID", " " & $gameID) DirCreate(@ScriptDir & "\bgData\Profiles\" & $gameID) FileCopy(@ScriptDir & "\bgData\Profiles\2000000000\globalstatsCompressed_2000000000", @ScriptDir & "\bgData\Profiles\" & $gameID & "\globalstatsCompressed_" & $gameID, 1) FileCopy(@ScriptDir & "\bgData\Profiles\2000000000\mpstatsBasicTraining_2000000000", @ScriptDir & "\bgData\Profiles\" & $gameID & "\mpstatsBasicTraining_" & $gameID, 1) FileCopy(@ScriptDir & "\bgData\Profiles\2000000000\mpstatsCompressed_2000000000", @ScriptDir & "\bgData\Profiles\" & $gameID & "\mpstatsCompressed_" & $gameID, 1) FileCopy(@ScriptDir & "\bgData\Profiles\2000000000\recentservers.dat_2000000000", @ScriptDir & "\bgData\Profiles\" & $gameID & "\recentservers.dat_" & $gameID, 1) FileCopy(@ScriptDir & "\bgData\Profiles\2000000000\spstatsCompressed_2000000000", @ScriptDir & "\bgData\Profiles\" & $gameID & "\spstatsCompressed_" & $gameID, 1) FileCopy(@ScriptDir & "\bgData\Public\2000000000_2", @ScriptDir & "\bgData\Public\" & $gameID & "_2", 1) Else $gameID = Random(2000000001, 2099999999, 1) IniWrite(@ScriptDir & "\bgSet.ini", "Config", "gameID", $gameID) IniWrite(@ScriptDir & "\BO_Launcher.ini", "Game", "gameID", " " & $gameID) DirCreate(@ScriptDir & "\bgData\Profiles\" & $gameID) FileMove(@ScriptDir & "\bgData\Profiles\" & $currentGameID & "\globalstatsCompressed_" & $currentGameID, @ScriptDir & "\bgData\Profiles\" & $gameID & "\globalstatsCompressed_" & $gameID, 9) FileMove(@ScriptDir & "\bgData\Profiles\" & $currentGameID & "\mpstatsBasicTraining_" & $currentGameID, @ScriptDir & "\bgData\Profiles\" & $gameID & "\mpstatsBasicTraining_" & $gameID, 9) FileMove(@ScriptDir & "\bgData\Profiles\" & $currentGameID & "\mpstatsCompressed_" & $currentGameID, @ScriptDir & "\bgData\Profiles\" & $gameID & "\mpstatsCompressed_" & $gameID, 9) FileMove(@ScriptDir & "\bgData\Profiles\" & $currentGameID & "\recentservers.dat_" & $currentGameID, @ScriptDir & "\bgData\Profiles\" & $gameID & "\recentservers.dat_" & $gameID, 9) FileMove(@ScriptDir & "\bgData\Profiles\" & $currentGameID & "\spstatsCompressed_" & $currentGameID, @ScriptDir & "\bgData\Profiles\" & $gameID & "\spstatsCompressed_" & $gameID, 9) FileMove(@ScriptDir & "\bgData\Public\" & $currentGameID & "_2", @ScriptDir & "\bgData\Public\" & $gameID & "_2", 9) ;FileDelete(@ScriptDir & "\bgData\Public\" & $currentGameID & "_2") DirRemove(@ScriptDir & "\bgData\Profiles\" & $currentGameID, 1) EndIf Else If $currentGameID == "" Then IniWrite(@ScriptDir & "\BO_Launcher.ini", "Game", "gameID", " " & $gameID) DirCreate(@ScriptDir & "\bgData\Profiles\" & $gameID) FileCopy(@ScriptDir & "\bgData\Profiles\2000000000\globalstatsCompressed_2000000000", @ScriptDir & "\bgData\Profiles\" & $gameID & "\globalstatsCompressed_" & $gameID, 1) FileCopy(@ScriptDir & "\bgData\Profiles\2000000000\mpstatsBasicTraining_2000000000", @ScriptDir & "\bgData\Profiles\" & $gameID & "\mpstatsBasicTraining_" & $gameID, 1) FileCopy(@ScriptDir & "\bgData\Profiles\2000000000\mpstatsCompressed_2000000000", @ScriptDir & "\bgData\Profiles\" & $gameID & "\mpstatsCompressed_" & $gameID, 1) FileCopy(@ScriptDir & "\bgData\Profiles\2000000000\recentservers.dat_2000000000", @ScriptDir & "\bgData\Profiles\" & $gameID & "\recentservers.dat_" & $gameID, 1) FileCopy(@ScriptDir & "\bgData\Profiles\2000000000\spstatsCompressed_2000000000", @ScriptDir & "\bgData\Profiles\" & $gameID & "\spstatsCompressed_" & $gameID, 1) FileCopy(@ScriptDir & "\bgData\Public\2000000000_2", @ScriptDir & "\bgData\Public\" & $gameID & "_2", 1) Else If $currentGameID <> $gameID Then IniWrite(@ScriptDir & "\BO_Launcher.ini", "Game", "gameID", " " & $gameID) DirCreate(@ScriptDir & "\bgData\Profiles\" & $gameID) FileMove(@ScriptDir & "\bgData\Profiles\" & $currentGameID & "\globalstatsCompressed_" & $currentGameID, @ScriptDir & "\bgData\Profiles\" & $gameID & "\globalstatsCompressed_" & $gameID, 9) FileMove(@ScriptDir & "\bgData\Profiles\" & $currentGameID & "\mpstatsBasicTraining_" & $currentGameID, @ScriptDir & "\bgData\Profiles\" & $gameID & "\mpstatsBasicTraining_" & $gameID, 9) FileMove(@ScriptDir & "\bgData\Profiles\" & $currentGameID & "\mpstatsCompressed_" & $currentGameID, @ScriptDir & "\bgData\Profiles\" & $gameID & "\mpstatsCompressed_" & $gameID, 9) FileMove(@ScriptDir & "\bgData\Profiles\" & $currentGameID & "\recentservers.dat_" & $currentGameID, @ScriptDir & "\bgData\Profiles\" & $gameID & "\recentservers.dat_" & $gameID, 9) FileMove(@ScriptDir & "\bgData\Profiles\" & $currentGameID & "\spstatsCompressed_" & $currentGameID, @ScriptDir & "\bgData\Profiles\" & $gameID & "\spstatsCompressed_" & $gameID, 9) FileMove(@ScriptDir & "\bgData\Public\" & $currentGameID & "_2", @ScriptDir & "\bgData\Public\" & $gameID & "_2", 9) ;FileDelete(@ScriptDir & "\bgData\Public\" & $currentGameID & "_2") DirRemove(@ScriptDir & "\bgData\Profiles\" & $currentGameID, 1) EndIf EndIf EndIf If $steam_api_mode == "mp" Then Run(@ScriptDir & "\" & $mp_exe & " " & $mp_cmd & " " & $CmdLineRaw) ElseIf $steam_api_mode == "zm" Then IniWrite(@ScriptDir & "\BO_Launcher.ini", "Game", "mode", " mp") Run(@ScriptDir & "\" & $mp_exe & " " & $mp_cmd & " " & $CmdLineRaw) Else FileMove(@ScriptDir & "\steam_api.dll", @ScriptDir & "\steam_api_valve.dll", 1) FileMove(@ScriptDir & "\steam_api_bg.dll", @ScriptDir & "\steam_api.dll", 1) FileMove(@ScriptDir & "\BlackOps.exe", @ScriptDir & "\BlackOps_plaza.exe", 1) FileMove(@ScriptDir & "\BlackOps_bg.exe", @ScriptDir & "\BlackOps.exe", 1) FileMove(@ScriptDir & "\BlackOpsMP.exe", @ScriptDir & "\BlackOpsMP_plaza.exe", 1) FileMove(@ScriptDir & "\BlackOpsMP_bg.exe", @ScriptDir & "\BlackOpsMP.exe", 1) IniWrite(@ScriptDir & "\BO_Launcher.ini", "Game", "mode", " mp") Run(@ScriptDir & "\" & $mp_exe & " " & $mp_cmd & " " & $CmdLineRaw) EndIf[/CODE] [/QUOTE]
Verification
Post reply
Forums
Gaming
Call of Duty Classics
Call of Duty: Black Ops 1
Call of Duty Black Ops 1 BGamer T5 LAN/Offline Client v0.7
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.
Accept
Learn more…
Top