赞 | 0 |
VIP | 10 |
好人卡 | 3 |
积分 | 1 |
经验 | 3584 |
最后登录 | 2015-10-25 |
在线时间 | 134 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 134 小时
- 注册时间
- 2009-3-29
- 帖子
- 470
|
直接给你脚本:很短的说- #==============================================================================
- # 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
复制代码 |
|