@wurstbrot123
Lass es, es hat keinen Sinn bei ihm. Ich hatte eine ausführliche Unterhalten via pm mit ihm und er weiß nicht mal was OP-Codes sind. Ich hab ihm ein Beispiel von Op-Codes gemacht, und er fragte ob er dies einfach in ein C++ Programm einfügen müsse.
Ein teil unserer Unterhaltung:
Ich:
Quote:
If you want to modify OP Code, you have to inject a dll with a injector. The dll has to read the address in the memory and after that you have to write to this address your OP-Code.
It's that simple.
Do you know how to do that and do you have a knowledge in C++ ?
|
Er:
Quote:
|
I dont have that much of a knowledge in C++ but I can learn I work in IT but on harware based not software base but I know a lil....... if you know better and have time for me I will realy apreciated the explications you would give ^^
|
Ich:
Quote:
First of All isn't it good to learn a programing language just to create hacks but.. everything is possible.
You can also modify OP-Code with a external program. And you can change the values on the addresses with both of them.(external + dll) You need a dll if you want to do difficult things. (Like a detour for a ingame menu)
I can help you with problems, but I don't want to teach you the hole programing language.
|
Er:
Quote:
|
ok, can I have the OP code and I'll see what I can do?
|
Ich:
Quote:
!? How should i know what function you want to modify?
For Example:
Assembler Code: JNZ 004017A1 "JNZ" = Jump if Not Zero "004017A1" = address
OP Code: 0F85 EE000000
But you want a JMP
new Assembler Code: JMP 004017A1 "JMP" = Jump "004017A1" = address
new OP Code: E9 EF000000
|
Er:
Quote:
|
so I create a dll by inserting this 2 code in the game no?
|