赞 | 0 |
VIP | 36 |
好人卡 | 0 |
积分 | 1 |
经验 | 2608 |
最后登录 | 2020-5-5 |
在线时间 | 52 小时 |
Lv1.梦旅人 敌敌畏
- 梦石
- 0
- 星屑
- 80
- 在线时间
- 52 小时
- 注册时间
- 2008-5-12
- 帖子
- 1748
|
以下引用new1984于2008-9-9 11:49:02的发言:
左上角的HP窗口能不能单独关掉呢?
菜单是很舒服,可是 只有7FPS 太卡了?
让沉影大大教你吧,我改过的脚本总是惨不忍睹
以下引用沉影不器于2008-9-9 10:23:46的发言:
以下引用偶尔杀人越货于2008-9-6 22:36:50的发言:
以下引用沉影于2008-9-6 20:54:02的发言:
左上角那个显示HP的窗体很...不晓得作者怎么想的,每帧重写一次contents
要是作者有你这技术估计写的就是战斗系统了...哈哈
我只是因为电脑旧,特别重视FPS而已...
试试这个
#==============================================================================
# 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
此脚本在32位xp环境下绝对安全
还可以调的更快,如果不怕系统崩溃的话
|
|