Feb 5, 2016 at 3:17 PM
I believe the sets of code for each NPC are pretty close to each other so if you change the length of an NPC's code it will likely overwrite part of the next NPC's code.
If you offset an NPC, and the asm coding takes up more space than the original, does it overwrite the next NPC as well?
If you rewrite an NPC's AI function, and the new function is longer (in bytes, not commands) than the old function, then yes, it'll overwrite into whichever function is next (which is likely the next NPC), since you're trying to put a longer function into a smaller space.
What if I put some code for the the said AI function in a completely different(and empty) part of the exe, and CALL to it during the NPC code? Then Retn it and it wouldn't take up any more space in the NPC code area?
Wait, f*ck, don't local variables, like not stay during a CALL function or something like that?
Calling another function will "mess up your local variables" if you set it up right, yes. Basically the function you called will/should no longer have access to the local variables from the function you are calling from. But instead of calling, you can just JMP to your code in the unused space elsewhere in the .exe, which would mean that you're never leaving the scope of the function you're in and could use the local variables. You'll want to be sure to JMP back to the end of the function at the end.
To play nicely with the stack, i.e. so that the functions you are calling DON'T touch/mess up your local variables.Wait, so now i'm confused.
If you could just JMP back and forth, what would CALL and RETN be good for?
To play nicely with the stack, i.e. so that the functions you are calling DON'T touch/mess up your local variables.
It's also so that you can call a function and it'll know to return to where it's called from, whereas if you JMP back and forth, the code block you are JMPing to can only JMP back to one spot. So the function can easily be called from multiple spots.
parental controls.
Yeaaah, it always gives me a message when I open up olly saying "you do not have administrator privlages".I hate to be the bearer of bad news, but I think that those parental controls *might* have to do with your olly problems. Maybe.
one is a "read" event and one is a "write" event
If you rewrite an NPC's AI function, and the new function is longer (in bytes, not commands) than the old function, then yes, it'll overwrite into whichever function is next (which is likely the next NPC), since you're trying to put a longer function into a smaller space.
Yeah, 1.5 MB is nothing; even ollydbg takes over 2 MB in space!Is there seriously no way to make the executable bigger?
Surely there's some kind of program that can do that.
Inserting space into the middle of the .exe would mess up a lot of CALL statements, and maybe some JMPs (if you had some custom code). And also I think you would have to edit the exe's header, to let it know that the "code" part of the executable is bigger.Is there seriously no way to make the executable bigger?
Surely there's some kind of program that can do that.