Originally Posted by Wintermute
Give up now and go back to learning C#. It is obvious you don't know enough.
|
That was a very discouraging statement, as well as the one below it. Don't forget, you were once at his level too. He's asking for help to LEARN, not leach; I think you could at least have offered him a little assistance.
On the note of how to do it in C#, I do agree with them that it is a bit more advanced, but not entirely impossible with basic knowledge.
I would recommend you look for some tutorials on how to incorporate ASM into a C# program. If I remember correctly, it would basically follow this type of form:
Code:
extern "C" __declspec(dllexport) void* __stdcall yourMethodName() {
_asm {
//Insert your ASM Script code here for dEMI/dEM
//It's going to be a lot of mov/push/eax/ebx/etc.
}
}
Of course, the code above would do virtually nothing and yes, it would need a lot of editing/additions to it. But I just hope it at least gets you on the write track.