赞 | 0 |
VIP | 36 |
好人卡 | 0 |
积分 | 1 |
经验 | 2608 |
最后登录 | 2020-5-5 |
在线时间 | 52 小时 |
Lv1.梦旅人 敌敌畏
- 梦石
- 0
- 星屑
- 80
- 在线时间
- 52 小时
- 注册时间
- 2008-5-12
- 帖子
- 1748
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
.!注意:脚本为转载并来自DEMO,版权属于原作者,请各位在使用的时候注明版权以免发生法律纠纷
强力推荐各位适用这个脚本
这个脚本是翻译国外的游戏时淘到的,通过win32来修改游戏进程的优先级,能大量提升fps
◎适用于所有rm版本
冲突:由于是api脚本,几乎0冲突,奔3以下的机器可能会造成系统不稳定
未适用前,游戏进程的优先级为标准
使用脚本后,发现游戏的进程优先级被提升了
脚本引用:
#==============================================================================
# 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
|
|