I HAVE A HACK (NO BS) NEED HELP

08/10/2012 10:49 kipz#1
ANYONE WITH C++ KNOWLEDGE PLZ PM ME, I GOT THE SOURCE CODE FOR A HACK WHICH COULD HELP GAIN ELO, PLEASE PM ME IF U KNOW C++!!

BUMP BUMP THIS IS NO SCAM ALL I NEED IS *HELP* I WILL SHOW U THE SOURCE CODE IT's L E G I T~!!!
08/10/2012 10:59 evolution007#2
send me source via pm. i will check it.
08/10/2012 11:05 kipz#3
I sent you message!
08/10/2012 11:06 Necruk#4
sure both of you just talking crap i bet
08/10/2012 11:17 kipz#5
Quote:
Originally Posted by Necruk View Post
sure both of you just talking crap i bet
I dont care what you think, he will searching for a customer header or something I need for it :bandit:
08/12/2012 01:08 evolution007#6
it sends custom messages via chat to decrease the fps of other people. you can find source here [Only registered and activated users can see links. Click Here To Register...]. the main problem is that it requires custom cdeteur. the chance of hack to be fixed is very high because someone has already reported it. the cdeteur header files that i used to [Only registered and activated users can see links. Click Here To Register...] zone.com/f497/tut-hooking-667712/ there was a thread in reddit but i can't find it right now about that bug.
08/12/2012 01:29 'Gatekeeper#7
yeah, source seems legit.
08/12/2012 02:29 Sycs Honeyboy#8
Quote:
Originally Posted by kipz View Post
ANYONE WITH C++ KNOWLEDGE PLZ PM ME, I GOT THE SOURCE CODE FOR A HACK WHICH COULD HELP GAIN ELO, PLEASE PM ME IF U KNOW C++!!

BUMP BUMP THIS IS NO SCAM ALL I NEED IS *HELP* I WILL SHOW U THE SOURCE CODE IT's L E G I T~!!!
Only Capslock
Seems legit
08/12/2012 08:02 akerajoe#9
can any1 with some high knowledge(and ofc good rep.)check this for me?cause i really dont know shit bout c++
08/12/2012 13:49 'Gatekeeper#10
Are there ans level2 members For the LoL section ?
08/12/2012 18:05 Rayfi#11
Wtf ?

This is work ?

How to use this Pastebin?
08/12/2012 18:20 'Gatekeeper#12
:facepalm:

Rayfi gtfo, if you dont know c++ he isnt interested...
08/12/2012 18:47 Rayfi#13
I know C++.

But I'm not a pro for this.
08/12/2012 22:38 Supernuss#14
Code:
    #include <windows.h>
    #include <stdio.h>
    #include "Detour\CDetour.h"
     
     
    DWORD dwClientNode_SendChatAddress = 0x0082D560;
    DWORD dwClientNode_ShowChatAddress = dwClientNode_SendChatAddress + 0x110;
    PDWORD pClientNodeInstance;
     
    CDetour ClientNode_SendChatDet;
     
    BYTE ShowChatOrg[] = { 0x83, 0x7E, 0x2C};
    BYTE ShowChatFix[] = { 0xC2, 0x0C, 0x00};
     
    void AppendShowChat(bool bFix = true)
    {
            DWORD dwOldProtect;
     
            VirtualProtect((LPVOID)dwClientNode_ShowChatAddress, 3, PAGE_EXECUTE_READWRITE, &dwOldProtect);
            for (int i = 0; i < 3; ++i)
            {
                    if (bFix)
                            *(PBYTE)(dwClientNode_ShowChatAddress+ i) = ShowChatFix[i];
                    else
                            *(PBYTE)(dwClientNode_ShowChatAddress+ i) = ShowChatOrg[i];
            }
    }
     
    #define START_GAME ""
    int nSleep = 5;
     
    void WINAPI ClientNode_SendChat(char* szMessage)
    {
            if (!stricmp(szMessage, "."))
            {
                    pClientNodeInstance = (PDWORD)ClientNode_SendChatDet.GetThisPtr();
                    strcpy(szMessage, START_GAME);
            }
            else if (!memcmp(szMessage, ".delay ", 7))
            {
                    sscanf(szMessage, ".delay %i", &nSleep);
                    strcpy(szMessage, START_GAME);
            }
     
    }
    bool bSpam = false;
    DWORD WINAPI KeyBindThread(LPVOID)
    {
            while(true)
            {
                    if (GetAsyncKeyState(VK_MBUTTON)&1)
                    {
                            bSpam = true;
                    }
     
                    if (GetAsyncKeyState(0x60)&1)
                            bSpam = false;
     
                    else if (GetAsyncKeyState(VK_HOME)&1)
                            AppendShowChat();
     
                    else if (GetAsyncKeyState(VK_END)&1)
                            AppendShowChat(false);
     
                    if (bSpam)
                    {
                            if (pClientNodeInstance == NULL)
                                    continue;
     
                            AppendShowChat();
                            char szBuffer[384];
                            strcpy(szBuffer, "/all ..");
                            for (int i = strlen("/all ..")-1; i < 384; ++i)
                                    szBuffer[i] = '\n';
     
                            ((int (__thiscall*)(PDWORD, char*))dwClientNode_SendChatAddress) (pClientNodeInstance, szBuffer);
                    }
                    Sleep(nSleep);
            }
    }
     
    BOOL WINAPI DllMain(HMODULE hModule, DWORD dwReason, LPVOID)
    {
            if (dwReason == DLL_PROCESS_ATTACH)
            {
                    DisableThreadLibraryCalls(hModule);
                    ClientNode_SendChatDet.Detour((PBYTE)dwClientNode_SendChatAddress, (PBYTE)ClientNode_SendChat, true);
                    ClientNode_SendChatDet.Apply();
                    CreateThread(NULL, NULL, KeyBindThread, NULL, NULL, NULL);
            }
            return TRUE;
    }
(for the ones who are to stupid for link-klicking)

I just heard of sth like that today, all of my friends teammembers and he got disconnected at once, the enemies won the game that way....
08/17/2012 11:17 rawrgodzilla#15
(English only here, sorry)
So pretty much what this hack does is enable/disable "Show Chat" by modifying 3 bytes at whatever address "Show Chat" is for that version and spams ~380 "\n" (line break) whenever you press the scroll wheel?
I'm assuming evolution007 has already tried both CDetour files mentioned in the post he linked.

So what's the problem with this code? Is the address specified for dwClientNode_SendChatAddress from an older version? Not sending? Not hooking? Just don't have the CDetour.h file necessary to get it to run? Too lazy to compile and fire up LoL.