Trainer Search

joserincj

Member
Joined
Nov 7, 2015
Messages
20
Reaction score
9
Don't think we'll get a dedicated trainer for this. I tried doing a pointer scan for health - left the scan run for over an hour, it was still calculating - then gave up :/
 

Jay Are

Active Member
Joined
Sep 2, 2015
Messages
51
Reaction score
8
Don't think we'll get a dedicated trainer for this. I tried doing a pointer scan for health - left the scan run for over an hour, it was still calculating - then gave up :/
Prob not, since we're not donors. Ah well.
 

Cake-san

Member
Joined
Apr 26, 2016
Messages
10
Reaction score
0
Freeze Health script:
Code:
[ENABLE]
aobscan(inj_freezeHp,D9 04 24 83 C4 04 DE E9 D9 9B 40 01 00 00)
inj_freezeHp:
db DD D8 D9 83 44 01 00 00
//fstp st(0)
//fld dword ptr [ebx+00000144]
registersymbol(inj_freezeHp)
[DISABLE]
inj_freezeHp:
db D9 04 24 83 C4 04 DE E9
//fld dword ptr [esp]
//add esp,04 { 4 }
//fsubp st(1),st(0)
unregistersymbol(inj_freezeHp)

Freeze Armor Script:
Code:
[ENABLE]
aobscan(inj_freezearmor,D9 04 24 83 C4 04 DE E9 D9 9B 64 01 00 00)
inj_freezearmor:
db DD D8 D9 83 68 01 00 00
//fstp st(0)
//fld dword ptr [ebx+00000168]
registersymbol(inj_freezearmor)
[DISABLE]
inj_freezearmor:
db D9 04 24 83 C4 04 DE E9
//fld dword ptr [esp]
//add esp,04 { 4 }
//fsubp st(1),st(0)
unregistersymbol(inj_freezearmor)
 
Top