這是按鍵精靈的腳本
我是使用6.7版的按鍵精靈並且在設定->硬體模式後才能夠正常使用
切忌因為是按鍵精靈所以不支持多開也不支持背景執行
掛網時不能夠進行其他動作 例如:即時通聊天
所以只適合需要長時間掛網的人使用
目前以正常掛網8小時以上了
如果有人需要的話我在放上其他功能或說明
Plugin hwnd = Window.GetKeyFocusWnd()
Rem
//by leon
//hp記憶體基值
hpmemory=&H05F20D80
//mp記憶體基值
mpmemory=&H008C6284
//rehp=補血%
//khp=補血時使用的按鍵預設F1
rehp=80
khp=112
//remp=補魔%
//kmp=補魔時使用的按鍵預設F4
remp=80
kmp=115
Rem start
Gosub hpmemory
If HP<rehp
KeyPressS khp,1
Delay 1500
EndIf
Gosub mpmemory
If MP<mmp
KeyPressS mhp,1
Delay 1500
EndIf
Goto start
Sub hpmemory
Plugin ghp = Memory.Read32Bit(hwnd,hpmemory)
mixhp = ghp + &H460
HP_Addr = ghp + &H45c
Plugin N_HP = Memory.Read32Bit(hwnd,HP_Addr)
Plugin TOP_HP = Memory.Read32Bit(hwnd,mixhp)
HP=(N_HP/TOP_HP)*100
Return hpmemory
Sub mpmemory
Plugin gmp = Memory.Read32Bit(hwnd,mpmemory)
MP_Addr = gmp + &H23c
mixmp = gmp + &H240
Plugin N_MP = Memory.Read32Bit(hwnd,MP_Addr)
Plugin TOP_MP = Memory.Read32Bit(hwnd,mixmp)
MP=(N_MP/TOP_MP)*100
Return mpmemory
[ 本帖最後由 cs106 於 2009-4-4 14:28 編輯 ] |