I was looking at this video
At the end, step 9, there is something I don't understand to make team 1 " invicible"
We add code like this :
cmp [ebx+10] 1
jne originalcode
fldz
jmp originalcode+5
original code:
mov [ebx+04],eax
fldz
What means the ebx ?
I understand that the 10 is the offset of team and that the 1 is our team.
But what does exactly mean ? We check team, if it's egual to our team we don't do anything ?
And if it's not our team, we do a jump by using "jne" to the original code, then it will attack as the originalcode say.
But why using jne, what is it ? Why not using jmp ?
And what does eax mean ?
Also is the 04 the offset of health ?
I understand that because we don't know what is fldz, we don't touch it.
But what we put a jump using "jmp" this time to the original code +5.
Why is he saying that it is 5 bytes jump ?
Sorry for all that question, i'm a beggining, and tried to learn more about CE to start.
You will probably take me for a ****** that doesn't understand anything






