Got t-search?
A simple memory redirection can do this easily. Open up t-search, attach Conquer and make a new easy write file. Stick in the code, click ok and turn it on. Should work, not tested very much.
Code:
offset 00010E00
JMP 004588F3
JMP 004F5029
offset 004F4E67
JMP 00010E00
If you'd prefer it from a HLL.
Code:
BYTE newCode[] = { 0xE9, 0xEE, 0x7A, 0x44, 0x00, 0xE9, 0x1F, 0x42, 0x4E, 0x00 };
BYTE reCode[] = { 0xE9, 0x94, 0xBF, 0xB1, 0xFF };
WriteProcessMemory(pHandle, (void*)0x10E00, (void*)newCode, 10, NULL);
WriteProcessMemory(pHandle, (void*)0x4F4E67, (void*)reCode, 5, NULL);