sguetsch How do I cheat?
Reputation: 0
Joined: 12 Jun 2015 Posts: 1
|
Posted: Fri Jun 12, 2015 10:24 am Post subject: Need help with a Zoom Mod (Mount and Blade) |
|
|
Hi.
I'm working on a zoom mod for Mount and Blade. Some Mods for this game don't suppoert zooming so i decided to change that.
I started the Native module, figured out the zoom adress and made this code:
Code: | [ENABLE]
alloc(newmem,2048)
label(returnhere)
label(originalcode)
label(exit)
newmem:
originalcode:
add [eax],al
add [eax],al
add al,al
exit:
jmp returnhere
mb_warband.exe+3C3570:
jmp newmem
nop
returnhere:
[DISABLE]
dealloc(newmem)
mb_warband.exe+3C3570:
add [eax],al
add [eax],al
add al,al
|
so, now i have a minimal increase of the cameras zoom (ca 1-2%) and i want a larger zoom. what must i change?
thanks in advance
|
|