赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 1 |
经验 | 8720 |
最后登录 | 2013-7-16 |
在线时间 | 433 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 433 小时
- 注册时间
- 2010-5-13
- 帖子
- 116
|
本帖最后由 005020671 于 2011-3-31 17:47 编辑
曾经看到过的一个脚本,超级防卡脚本,不过LZ的fps低到1,这是电脑配置问题还是使用了某些脚本的问题,- #==============================================================================
- # Módulo AntiLag
- #==============================================================================
- module AntiLag
- SPC = Win32API.new("kernel32", "SetPriorityClass", "pi", "i")
- @@high_priority = false
- def self.high_priority ; @@high_priority; end
- def self.high_priority?; @@high_priority; end
- def self.high_priority=(valor)
- return if @@high_priority == valor
- @@high_priority = valor
- if @@high_priority
- SPC.call(-1, 0x80)
- return
- end
- SPC.call(-1, 0x20)
- end
- end
- AntiLag.high_priority = true
复制代码 |
|