Moin -
here I want to show you how to start Diablo more then once.
You could patch it by your own with ollydbg skills or something like that.
Pattern:
AccessPatch[] = {0x8B, 0x5D, 0x20,
0x8B, 0x4D, 0x1C,
0x8B, 0x55, 0x18,
0x8B,0x40,0x04,
0x53,
0x51,
0x8B, 0x4D, 0x14,
0x52,
0x8B, 0x55, 0x10,
0x51,
0x8B, 0x4D, 0x0C,
0x52};
Pos[AccessPatch+sizeof(AccessPatch)-0x8] ==> "\x51\x8B\x4D\x0C\x6A\x03\x90\x90"
---------------------------------------------------------------------------------------------------------------------------------------
WithoutLaucher[] = {0xF6, 0x40, 0x05, 0x10,
0x75, 0x17};
Pos[sizeof(WithoutLaucher)-0x2] = 0xEB;
For people who don't have any knowledge with ollydbg or something like that I've uploaded a little tool to do that!
Attachment 8318
PS: I know there are other mehtod's but this one works fine for me ;P (you don't need to copy the Diablo III folder twice or more ;D)
Enjoy =)
Attachment 8309