Could anyone advise me how to make a separate folder for your screenshot? Thank you
Main.exe (1.02c)
Could anyone advise me how to make a separate folder for your screenshot? Thank you
Main.exe (1.02c)
just replace your offset.Code:static char* ScreenName = "Images\\Screen(%02d_%02d-%02d_%02d)-%04d.jpg""; SetDword((PVOID)(0x004D9F54+1), (DWORD)ScreenName);
i did it by editing main.exe with hex editor and changed the path
What about
100% workPHP Code:#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
// Save screen folder
char imgdir[_MAX_PATH];
strcpy_s(imgdir,CurrentDir);
strcat_s(imgdir,"Fotos");
CreateDirectoryA(imgdir,NULL);
char SSPath[50];
memcpy(SSPath,"Fotos\\Screen(%02d_%02d-%02d_%02d)-%04d.jpg",50);
memcpy((DWORD*)0x00871111,SSPath,50);
HookExactOffset(0x00871111,0x006B4633,0x68);
Last edited by leorond; 01-10-16 at 04:45 AM.