| 赞 | 0  | 
 
| VIP | 10 | 
 
| 好人卡 | 3 | 
 
| 积分 | 1 | 
 
| 经验 | 3584 | 
 
| 最后登录 | 2015-10-25 | 
 
| 在线时间 | 134 小时 | 
 
 
 
 
 
Lv1.梦旅人 
	- 梦石
 - 0 
 
        - 星屑
 - 50 
 
        - 在线时间
 - 134 小时
 
        - 注册时间
 - 2009-3-29
 
        - 帖子
 - 470
 
 
 
 | 
	
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员  
 
x
 
非常好用 
以下脚本: 
 
- #==============================================================================
 
 - # 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
 
  复制代码 |   
 
 
 
 |