CheatMaker 论坛

注册

 

发新话题 回复该主题

求助修改器问题 [复制链接]

1#
昨天我汇编注入了数值,当事没问题,
我1口气翻版了,今天我在使用修改器就没有效果了,
包括用CT表修改也是一样求助!!!!!

[ENABLE]
//code from here to '[DISABLE]' will be used to enable the cheat
alloc(newmem,2048) //2kb should be enough
label(returnhere)
label(originalcode)
label(exit)
057D97B2:
jmp newmem
returnhere:
newmem:

originalcode:
mov edx,#99
mov [eax+08],edx
test ecx,ecx
exit:
jmp returnhere


[DISABLE]
//code from here till the end of the code will be used to disable the cheat
dealloc(newmem)
057D97B2:
mov [eax+08],edx
test ecx,ecx
//Alt: db 89 50 08 85 C9
Snap2258.jpg (, 下载次数:0)

(2014/12/8 12:38:44 上传)

Snap2258.jpg

Snap2259.jpg (, 下载次数:0)

(2014/12/8 12:38:44 上传)

Snap2259.jpg

Snap2261.jpg (, 下载次数:0)

(2014/12/8 12:38:44 上传)

Snap2261.jpg

最后编辑路人 最后编辑于 2014-12-08 12:38:44
分享 转发
TOP
2#

有人吗 接下来我不会有人帮帮我吗
TOP
3#

明显地址的问题
脚本里不要使用绝对地址
要使用模块+偏移
TOP
4#

回复 3楼银河漫步的帖子

不会,请问该怎么操作,
给我写一个好不好
TOP
5#

你把里面的057D97B2换成模块+偏移地址
应该就可以了
TOP
6#

回复 5楼银河漫步的帖子

偏移怎么算
还有模块地址是8B CA 89 50
那么就是8B CA 89 50偏移吗
Snap2262.jpg (, 下载次数:0)

(2014/12/8 19:21:47 上传)

Snap2262.jpg

Snap2264.jpg (, 下载次数:0)

(2014/12/8 19:21:47 上传)

Snap2264.jpg

最后编辑路人 最后编辑于 2014-12-08 19:21:47
TOP
发新话题 回复该主题