在游戏《使命召唤6现代战争2》中,将游戏更换为中文的方法是先建立一个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