rhg59321 發表於 2020-1-16 06:11:49

TwMS v222.1 CRC Auto HP/MP

//TwMS v222.1 CRC Auto HP/MP

alloc(HP,4)
alloc(MP,4)
alloc(CheckHP,128)
alloc(CheckMP,128)
alloc(PressKey,128)
label(HPReturn)
label(MPReturn)

define(HP_Value,#1000) //Define HP Trigger Here (Do not remove # tag)
define(MP_Value,#600) //Define MP Trigger Here (Do not remove # tag)
define(HealthKey,01520000) //HP Key--Insert
define(ManaKey,01510000) //MP Key--PgDown

HP:
dd HP_Value
MP:
dd MP_Value

CheckHP:
db 89 83 04 cb 00 00
cmp esi,
jg HPReturn
pushad
mov edx,HealthKey
call PressKey
popad
jmp HPReturn

CheckMP:
db 89 9f 14 02 00 00
cmp esi,
jg MPReturn
pushad
mov edx,ManaKey
call PressKey
popad
jmp MPReturn

025A2419:
jmp CheckHP
db 90
HPReturn:

0233EB62:
jmp CheckMP
db 90
MPReturn:

PressKey:
mov esi,
mov ecx,
push edx
push 00
call 02994920
ret


025A2419:
db 89 83 04 cb 00 00

0233EB62:
db 89 9f 14 02 00 00

dealloc(HP)
dealloc(MP)
dealloc(CheckHP)
dealloc(CheckMP)
dealloc(UseHP)
dealloc(UseMP)
dealloc(PressKey)

頁: [1]
查看完整版本: TwMS v222.1 CRC Auto HP/MP