Hello, whats up guys? As I hate pretty much the long threads I will post something just to know what I am searching for. Well, I have code for infinite nitro for the NFS MW. The code is compiling fine and works great in Auto assamble, but I can't figure it out how could I inject the code from Delphi without using CE at all. So I want to auto assamble the same code from Delphi and inject that code into the process "speed.exe". I really couldn't find anything on the net, not even on the board. This is the code:
Code:
[ENABLE]
Alloc(Mem, 4)
Mem:
dd 3F800000
use writeprocessmemory
and instead of alloc(mem) you could try writing the value 3f800000 to a location you know exists (e.g 00400500)
else use virtualallocex and fill in the address in the bytes you write yourself
_________________
00692A96:
Fld Dword Ptr [Mem]
00692AFA:
Fld Dword Ptr [Mem]
[DISABLE]
Dealloc(Mem)
00692A96:
Fld Dword Ptr [Esi+000000F8]
00692AFA:
Fld Dword Ptr [Esi+000000F8]
The problem is that I can not use "asm" in procedure because this is not a normal assemble but auto assamble by Sven Harvey (I think). Any help would be thankful.
use writeprocessmemory
and instead of alloc(mem) you could try writing the value 3f800000 to a location you know exists (e.g 00400500)
else use virtualallocex and fill in the address in the bytes you write yourself
_________________
use writeprocessmemory
and instead of alloc(mem) you could try writing the value 3f800000 to a location you know exists (e.g 00400500)
else use virtualallocex and fill in the address in the bytes you write yourself
_________________