赞 | 0 |
VIP | 7 |
好人卡 | 10 |
积分 | 6 |
经验 | 80946 |
最后登录 | 2024-11-18 |
在线时间 | 2167 小时 |
Lv2.观梦者 故九江太守
- 梦石
- 0
- 星屑
- 612
- 在线时间
- 2167 小时
- 注册时间
- 2012-12-5
- 帖子
- 4464
|
试试用防卡脚本- #==============================================================================
- # 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
复制代码 |
评分
-
查看全部评分
|