
Originally Posted by
ZeaS
lol i think you are the noob^^
you can make opk in vb6 but you need special module :P
I don't know why you would need a "Special Module"
In VB and C++(With Slight Modification) when working with the Windows OS import(Is in the VB.Net version I beleave)
Its just
In VB.net
blu blu blu to get the handle
Dim MyNop6Bytes[6] as new byte = (&h90,&h90,&h90,&h90,&h90,&h90)
WriteProcessMemory(MyHandle,TheAddressToNop(LONG), 6,Nothing);
in C++
blublublbu To get the handle
BYTE MyNop6Bytes[6] = {0x90,0x90,0x90,0x90,0x90,0x90};
WriteProcessMemory(Handle,Address,&WriteValue,6,0) ;
There you go. I'm not sure if the VB code is correct, I'm getting all tied up in C++.