使命召唤6游戏中,重制版中文设置方法是建立一个bat文件,然后打开战网客户端,正常启动游戏的同时运行该bat文件,以覆盖战网客户端自动修改注册表,这时启动的游戏就是中文版了。
bat文件代码一览:
echo Windows Registry Editor Version 5.00 >> CN.reg
echo [HKEY_CURRENT_USER\Software\Blizzard Entertainment] >> CN.reg
echo [HKEY_CURRENT_USER\Software\Blizzard Entertainment\Battle.net] >> CN.reg
echo [HKEY_CURRENT_USER\Software\Blizzard Entertainment\Battle.net\Launch Options] >> CN.reg
echo [HKEY_CURRENT_USER\Software\Blizzard Entertainment\Battle.net\Launch Options\LAZR] >> CN.reg
echo "LOCALE"="zhCN" >> CN.reg
regedit /s CN.reg
del CN.reg