|
楼主 |
发表于 2006-6-7 15:56:22
|
显示全部楼层
来自 中国–福建–龙岩
回复: 如何简单地建立BF2服务器
为何如此说呢?
其实BF2ServerLauncher.exe就是调用一个bf2_w32ded.exe运行而已。
如何后台运行?
很简单,在前者建立服务器配置文件的基础上,运行bf2_w32ded.exe携带参数。
例如,我们建立了一个BF2-DT配置。
这个配置文件在我的文档中的Battlefield 2的ServerConfigs目录下。
好了。设置这样的批处理。
- @echo off
- cls
- echo Protecting BF2 Server from crashes...
- echo If you want to close Bf2_w32ded and this script,
- echo close the hlds window and type Y depending on your language followed by Enter.
- title BF2 Server #1 DT-Club Running
- D:
- cd "Battlefield 2 Server"
- echo (%date% %time%) BF2 Server started.
- start /wait /high Bf2_w32ded.exe +config "@HOME@/ServerConfigs/bf2-dt.con"
复制代码 |
|