CheatMaker 论坛

首页 » 修改器版块 » 修改技术讨论 » 求助修改器问题
路人 - 2014/12/8 12:14:05
昨天我汇编注入了数值,当事没问题,
我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

附件: Snap2259.jpg

附件: Snap2261.jpg
路人 - 2014/12/8 12:39:21
有人吗 接下来我不会有人帮帮我吗
银河漫步 - 2014/12/8 12:40:04
明显地址的问题
脚本里不要使用绝对地址
要使用模块+偏移
路人 - 2014/12/8 13:21:27
回复 3楼银河漫步的帖子

不会,请问该怎么操作,
给我写一个好不好
银河漫步 - 2014/12/8 16:13:50
你把里面的057D97B2换成模块+偏移地址
应该就可以了
路人 - 2014/12/8 17:51:27
回复 5楼银河漫步的帖子

偏移怎么算
还有模块地址是8B CA 89 50
那么就是8B CA 89 50:+偏移吗

附件: Snap2262.jpg

附件: Snap2264.jpg
1
查看完整版本: 求助修改器问题