FULL SOURCE CODE THAT WORKS IN MICRSOFT Visual C++ 6.0.
is included.
I will release the public version when this is one hell of a hack XD.
Quote:
Updated UNRELEASED VERSION Features List:
-Host hack
-->Lets you ban people(including the host),kick people,close,open slots
-Start game with no opponents
-->game will end in a draw
-->You may click continue playing for testing purposes I suppose
if you want to test in battle.net without worrying about a computer
killing you or something...
EVEN if you are NOT the host.
-F8 Disconnect Hack
--> It will say others were dropped, but really only you are disconnected
--> Doing this before it says "surrender" gives a Draw, if not a Disconnect.
-F9- Show Credits
-->(in-game)
- Show Download Stats Always(100 etc.)
|
I posted here of all sites because having MINERAL HACK and NUKE ANYWHERE HACK working for 1.15 starcraft your site is worthy.
This is just a very simple .dll that writes to screen to the user.
(Useful for all hack makers, to tell the user what hack they are using)
Hotkeys
F9- shows my message.
credits to me(XSOULDEATH),ulliklliwi,AgentGod from bwhacks.com
Original Post
C++ JmpPatch Problems -.- - BWHacks
since bwhacks.com limited my posts so they have to approve and no1 would really see it. you guys can have this.
Full working source code in c++ and screenshot included.
Code:
#define WIN32_LEAN_AND_MEAN
#include "stdafx.h"
#include <windows.h>
#include <stdio.h>
#include "detours.h"
#include <string>
using namespace std;
//Important: (after define) in the includes stdafx.h MUST go first or you get errors.
const int BWPrintText = 0x48CE70; // Print Text Function
void BWPubTextOut(char* text,BOOL MiddleS)
{
__asm{
MOV ESI, text
PUSH ESI
}
if (MiddleS) // true for add text to the (cheat enabled place), or false for normal placement
{
// middle of screen
_asm MOV EAX, -1
}
else
{
// takes away the player format speak . . . so no "playername: message" (%c: %s)
_asm MOV EAX, 8
}
__asm{
CALL DWORD PTR [BWPrintText]
}
}
#define InGame (*(int*)0x1505C0A3)
DWORD WINAPI StartUp(LPVOID lpara)
{
char* CopyRight = "Xsoulz Hack 0.1 by Xsouldeath \x10[\x19http://www.xsouls.tk/\x10]";
bool write = true;
while (true)
{
if (InGame == 1)
{
if (write)
{
BWPubTextOut(CopyRight,false);
write = false;
}
}
else
{
write = true;
}
if (GetAsyncKeyState(VK_F9))
{
// push f9 add code for hotkeys
BWPubTextOut(CopyRight,false);
}
Sleep(600); // to stop lagg
}
return 0;
}
BOOL APIENTRY DllMain( HANDLE hModule, DWORD ul_reason_for_call, LPVOID lpReserved)
{
switch(ul_reason_for_call)
{
case DLL_PROCESS_ATTACH:
DisableThreadLibraryCalls(GetModuleHandle(NULL));
CreateThread(NULL,NULL,StartUp,NULL,NULL,NULL); // create new thread
break;
case DLL_PROCESS_DETACH:
break;
}
return true;
}