Results 1 to 10 of 10

Threaded View

  1. #1
    MiguelZinho's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    32
    Reputation
    10
    Thanks
    4

    Ajuda de Programação para Blackshot

    Sorry :I Personal valar all over again:

    Programming Help for BlackShot
    Talking Guys, I'm here today to ask for Any Programmer Hack (BlackShot)
    Help Me With This Base What I got Some Raking codes that I thought I on the net:

    I even know how that works all over the base
    Sera If I Inject the Hack This BackShot Vai Funfar:




    #include <Windows.h>
    #include <stdio.h>
    #include <iostream>
    #include <ctime>

    void *DetourCreate(BYTE *src, const BYTE *dst, const int len)
    {
    BYTE *jmp;
    DWORD dwback;
    DWORD jumpto, newjump;

    VirtualProtect(src, len, PAGE_READWRITE, &dwback);

    if(src[0] == 0xE9)
    {
    jmp = (BYTE*)malloc(10);
    jumpto = (*(DWORD*)(src + 1)) + ((DWORD)src) + 5;
    newjump = (jumpto - (DWORD)(jmp + 5));
    jmp[0] = 0xE9;
    *(DWORD*)(jmp + 1) = newjump;
    jmp += 5;
    jmp[0] = 0xE9;
    *(DWORD*)(jmp + 1) = (DWORD)(src - jmp);
    }
    else
    {
    jmp = (BYTE*)malloc(5 + len);
    memcpy(jmp, src, len);
    jmp += len;
    jmp[0] = 0xE9;
    *(DWORD*)(jmp + 1) = (DWORD)(src + len - jmp) - 5;
    }
    src[0] = 0xE9;
    *(DWORD*)(src + 1) = (DWORD)(dst - src) - 5;

    for(int i = 5; i < len; i++)
    src[i] = 0x90;

    VirtualProtect(src,len,dwback,&dwback);
    return(jmp - len);
    }
    //================================================== ========================
    //================================================== ========================
    bool MemoryEdit(void *lpMem, VOID *lpSrc, size_t len)
    {
    DWORD lpflOldProtect, flNewProtect = PAGE_READWRITE;
    UCHAR * pDst = (UCHAR*)lpMem, *pSrc = (UCHAR*)lpSrc;

    if(VirtualProtect(lpMem, len, flNewProtect, &lpflOldProtect))
    {
    while(len-- > 0)
    *pDst++ = *pSrc++;

    return 0;
    }
    return 1;
    }

    bool stamina1 = false;
    bool stamina2 = false;

    #define OffSet1 0x1CC444
    #define OffSet2 0x9918
    #define OffSet3 0x28078


    DWORD WINAPI NewMain(LPVOID)
    {
    DWORD old_protect = 0;
    for (;;Sleep(75))
    {
    DWORD hEhSvc1;
    do {
    hEhSvc1 = (DWORD)GetModuleHandleA("multiplay_sg.dll");
    Sleep(100);
    } while(!hEhSvc1);
    {
    if(GetAsyncKeyState(VK_F6)&1){
    stamina1 = !stamina1;
    }

    if(stamina1==true){
    VirtualProtect((void*)(hEhSvc1 + OffSet1), 1, PAGE_EXECUTE_READWRITE, &old_protect);
    memcpy((void*)(hEhSvc1 + OffSet1), (PBYTE)"\x64", 1);
    MemoryEdit((void*)(hEhSvc1 + OffSet1), (PBYTE)"\x64", 1);
    VirtualProtect((void*)(hEhSvc1 + OffSet1), 1, old_protect, &old_protect);
    }
    Sleep(50);
    }

    DWORD hEhSvc2;
    do {
    hEhSvc2 = (DWORD)GetModuleHandleA("d3dx9_29.dll");
    Sleep(100);
    } while(!hEhSvc2);
    {
    if(GetAsyncKeyState(VK_INSERT)&1){
    stamina2 = !stamina2;
    }

    if(stamina2==true){
    VirtualProtect((void*)(hEhSvc2 + OffSet3), 2, PAGE_EXECUTE_READWRITE, &old_protect);
    memcpy((void*)(hEhSvc2 + OffSet3), (PBYTE)"\x00\x10", 2);
    VirtualProtect((void*)(hEhSvc2 + OffSet3), 2, old_protect, &old_protect);
    }
    Sleep(50);
    }
    return 0;
    }
    }


    BOOL WINAPI DllMain(HINSTANCE module, DWORD dwReason, LPVOID lpvReserved)
    {
    if(dwReason == DLL_PROCESS_ATTACH)
    {
    CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)NewMain, NULL, NULL, NULL);
    MessageBox(NULL,"Inject Sucess MultHack !","BlackShot MultHack !", MB_OK);
    }
    return TRUE;
    }

  2. The Following User Says Thank You to MiguelZinho For This Useful Post:

    hungteoh1234 (03-30-2013)

Similar Threads

  1. [Solved] Ajuda para add funções vips
    By InBriza- in forum Combat Arms BR Coding Help
    Replies: 16
    Last Post: 07-06-2012, 06:33 PM
  2. [Tutorial] Apostila Lógica De Programação (Bom para iniciantes)
    By Hacker Fail in forum Combat Arms Brazil Tutorials
    Replies: 17
    Last Post: 05-10-2012, 09:54 PM
  3. [Solved] Ajuda Endereço para Glitch
    By thedark2 in forum Combat Arms BR Coding Help
    Replies: 6
    Last Post: 01-11-2012, 02:06 PM
  4. Alessandro 10 Teria como fazer um CHAMS para o Blackshot?
    By scaggiante in forum Combat Arms Brazil Help
    Replies: 4
    Last Post: 12-10-2011, 05:10 PM
  5. ajuda ? hack windows xp para AVA
    By play4000 in forum Alliance of Valiant Arms (AVA) Discussions
    Replies: 11
    Last Post: 06-19-2010, 09:19 PM