回复: 发布国人开发的pingbooster加速器!!!!
Post by kclee用WMP的都知道怎么用。
顺便也说下吧,敲敲键盘而已,在server.cfg里添加 sys_ticrate 1000 (这个参数可以自定义) 打开pingbooster.exe 然后运行HLDS就可以了。
个人认为WMP比较好。:)
回复: 发布国人开发的pingbooster加速器!!!!
我没用WMP,我一直在用serv-U,效果很好回复: 发布国人开发的pingbooster加速器!!!!
一个批处理而己,用了效果不太明显 !回复: 发布国人开发的pingbooster加速器!!!!
见过几个版本的时钟频率修改了……不过不知道加速了系统时钟会带来什么后果。回复: 发布国人开发的pingbooster加速器!!!!
Post by 老菜鸟我没用WMP,我一直在用serv-U,效果很好
啊…… serv-u的还是第一次听说。上次我还发现QQ也可以有效果。:qqb011:
回复: 发布国人开发的pingbooster加速器!!!!
我用的b....WMP试过没用- -!回复: 发布国人开发的pingbooster加速器!!!!
我用暴风影音加速,那个贼快啊。。。。:sexy_girl回复: 发布国人开发的pingbooster加速器!!!!
测试下去~~。。。。先收藏这个并不是国人开发的
其实几年前的一篇关于 srcds 的 tickrate 维基文中就有提到:http://whisper.ausgamers.com/wiki/index.php/Tickrate
Instructions:
... ...
3. To change the Windows Kernel Timer Resolution (pingboost a server) all you need to do is run Windows Media Player. It does not need a file open, it just has be running in the background, if you do not do this, your servers fps will be limited to around 64 frames a second.
You can also use a little app that somebody wrote, which you can find here: srcdsfpsboost.zip
... ...
***source code***
#include <stdio.h>
#include <windows.h>
int main(void)
{
timeBeginPeriod(1);
printf("Press any key to restore normal timer frequency.\n");
getchar();
timeEndPeriod(1);
return 0;
}
原理跟 wmp 等等一样,提高系统内核时钟频率。