google-site-verification: googlebaca44933768a824.html Visual Studio add Opcodes - Old Royal Hack Forum

Announcement

Collapse
No announcement yet.

Visual Studio add Opcodes

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Visual Studio add Opcodes

    Is it possible to force VS to add x NOP's after every line of code? So that there is no need of doing it manually, reallocating sutff, fixing jumps etc?

    Like

    mov eax,5
    inc eax
    add eax,7
    ...

    becomes

    mov eax,5
    nop nop nop
    inc eax
    nop nop nop
    add eax,7

    i search a good source code for Dods with aimbot and other stuff i know this is the same engine as counter strike source but css hacks are not work in dods.

    #2
    Re: Visual Studio add Opcodes

    just rebuild a new GCC and add some kind of macro to do that

    Comment

    Working...
    X