wdq4587 发表于 2010-10-5 21:35

用批处理切换COD6单机和联机

看说明有什么切换器下载,看了下差别觉得这么简单的事情应该不需要下载,编两个批处理就能解决

cod6_mp.bat

@echo off
if exist steam_api_mp.dll ren steam_api.dll steam_api_sp.dll
if exist steam_api_mp.dll ren steam_api_mp.dll steam_api.dll
if exist mainiw_23_mp.iwd ren mainiw_23.iwd iw_23_sp.iwd
if exist mainiw_23_mp.iwd ren mainiw_23_mp.iwd iw_23.iwd
start iw4mp.exe
exit

cod6_sp.bat

@echo off
if exist steam_api_sp.dll ren steam_api.dll steam_api_mp.dll
if exist steam_api_sp.dll ren steam_api_sp.dll steam_api.dll
if not exist mainiw_23_mp.iwd ren mainiw_23.iwd iw_23_mp.iwd
if exist mainiw_23_sp.iwd ren mainiw_23_sp.iwd iw_23.iwd
start cod6cn.exe
exit

这个是针对单机汉化选正版方式的,把批处理放exe同一目录下,在联机模式下,把单机目录下的steam_api.dll改名 steam_api_sp.dll复制到执行文件所在目录,然后为批处理创建快捷方式即可。
页: [1]
查看完整版本: 用批处理切换COD6单机和联机