
------ Build started: Project: Emokoi143, Configuration: Release Win32 ------ Compiling... Main.cpp Linking... Generating code Finished generating code Embedding manifest... mt.exe : general error c101008d: Failed to write the updated manifest to the resource of file "..\Release\Emokoi143.dll". Access is denied. Build log was saved at "file://c:\Documents and Settings\user\My Documents\Visual Studio 2008\Projects\Emokoi143\Emokoi143\Release\BuildLog.htm" Emokoi143 - 1 error(s), 0 warning(s) ========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
#include <windows.h>
#include <stdio.h>
// <# Start Pointers Addresses #> //
// <# Start Addresses Hacks #> //
#define ADR_SNS 0x00
// <# Start Offsets Addresses #> //
// <# Building Pointers #> //
DWORD *playing = (DWORD*)ADR_PlayerPointer;
DWORD *lobby = (DWORD*)ADR_ServerPointer;
// <# Building Hacks#> //
void SNS()
{
*(double*)ADR_SNS = 0;
}
void HackThread()
{
for(;; )
{
if(*playing)
{
SNS();
}
if(*lobby)
{
}}
Sleep(200);
}
BOOL WINAPI DllMain(HINSTANCE mod, DWORD status, LPVOID res)
{
if (status == DLL_PROCESS_ATTACH)
{
CreateThread(0, 0, (LPTHREAD_START_ROUTINE)HackThread, 0, 0, 0);
MessageBoxA(NULL,"Made by: Emokoi143","Warning!",MB_OK);
}
return TRUE;
}