This patch makes ebenezer check how many skillpoints the user have put in master instead of checking if the user is below level 70 or 65.
Matchless:
Original code:
- 004A03B7 CMP BYTE PTR DS:[EAX+53],46
- 004A03BB JB SHORT 004A03F7
复制代码
Jump to codecave:
Codecave:
- 004A0747 CMP BYTE PTR DS:[EAX+88],0A
- 004A074E JB 004A03F7
- 004A0754 JMP 004A03BD
复制代码
Absolutness:
Original code:
- 004A03FD CMP BYTE PTR DS:[EAX+53],41
- 004A0401 JB SHORT 004A0444
复制代码
Jump to codecave:
Codecave:
- 004A075B CMP BYTE PTR DS:[EAX+88],5
- 004A0762 JB 004A0444
- 004A0768 JMP 004A0403
复制代码 |