dont PM nor ask me how to use this 
DWORD MyBase = GetModuleBase32("sechost.dll", PID);
Memory *memory = new Memory(); //code you own memory
memory->FindPattern("mygame", MyBase, MyBase + 0x100000, (BYTE*)"\x00", 1);//use your own pattern
for (int i = 0; i < sizeof(memory->Result); i++)
{
printf("%X\n", memory->Result[i]);//displays the threads suspended
}



WriteProcessMemory(OpenProcess(PROCESS_ALL_ACCESS, false, PID), (LPVOID)(memory->Result[i] + N), (LPCVOID)"\x0", 1, NULL);


