Thread: PLEASE HELP ME

Results 1 to 6 of 6
  1. #1
    molecul3's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    6
    My Mood
    Bored

    PLEASE HELP ME

    Code:
    So i'm trying to make my own hack and here's my code.. why so many error?
    can some one fix this?
    
    
    #include <windows.h>
    #include <stdio.h>
    
    
    //--------------------------Define Hacks--------------------------//
    
    #define ADR_PlayerPointer 0x00
    #define ADR_ServerPointer 0x00
    #define ADR_Glasswall 0x00
    
    
    //--------------------------End Define Addies--------------------------//
    
    //--------------------------Define HackThread--------------------------//
    
    DWORD *ingame= (DWORD*)PlayerPointer;
    DWORD *outgame= (DWORD*)ServerPointer;
    
    
    
    //--------------------------Start Hacks--------------------------//
    void GWall()
    {
    DWORD dwPlayerPtr = *(DWORD*)Playerpointer;
    if(dwPlayerPtr != 0)
    {
    if(GetAsyncKeyState(VK_CONTROL) ) 
    {
    *(float*)GlassWall = 4;
    }
    }
    
    
    
    void HackThread() 
    {
    for(;; ) 
    {
    if(*ingame)
    {
    GlassWall();
    }
    
    }
    Sleep(200); //prevent for overloading the cpu
    }

  2. #2
    F l a p J a c K ™'s Avatar
    Join Date
    Jul 2012
    Gender
    male
    Location
    WarRock PH Force
    Posts
    1,737
    Reputation
    10
    Thanks
    1,472
    My Mood
    Bitchy
    i just posted some inputs in your 1st post in WarRock ph section

    A good coder is someone who always looks both ways before crossing a one-way street.
    ~Doug Linder

    Ramzking Injector: Press Here
    MPGH member since: 07-18-2012











  3. The Following User Says Thank You to F l a p J a c K ™ For This Useful Post:

    molecul3 (02-20-2014)

  4. #3
    joshua09joshua09's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Location
    Marikina
    Posts
    101
    Reputation
    10
    Thanks
    76
    My Mood
    Aggressive
    Code:
    void glasswall()
    {
    if(GetKeyState(VK_MBUTTON))
    *(int*)ADR_Glasswall = 1;
    else
    {
    *(int**)ADR_Glasswall = 0;
    }
    }
    }
    void HackThread()
    {
    for(;; )
    {
    if(*ingame)
    {
    WallClimb();
    }
    if(*outgame)
    {
    }
    Sleep(30); //prevent for overloading the cpu
    }
    }
    BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwReason, LPVOID lpvReserved)
    {
    if(dwReason == DLL_PROCESS_ATTACH)
    {
    MessageBoxA(NULL, "Made by *Any name Here*", "MPGH Coder", MB_OK);
    MessageBoxA(NULL, "A.K.A *CodeName mo*", "CODER", MB_OK);
    MessageBoxA(NULL, "Thanks to **", " ", MB_OK);
    CreateThread(0, 0, (LPTHREAD_START_ROUTINE)HackThread, 0, 0, 0);
    }
    return TRUE;
    }
    Last edited by Mayion; 02-23-2014 at 10:36 PM.

  5. #4
    F l a p J a c K ™'s Avatar
    Join Date
    Jul 2012
    Gender
    male
    Location
    WarRock PH Force
    Posts
    1,737
    Reputation
    10
    Thanks
    1,472
    My Mood
    Bitchy
    C&P go go go

    A good coder is someone who always looks both ways before crossing a one-way street.
    ~Doug Linder

    Ramzking Injector: Press Here
    MPGH member since: 07-18-2012











  6. #5
    I love myself
    나도 너를 사랑해

    Former Staff
    Premium Member
    Jhem's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Location
    167,646,447
    Posts
    5,151
    Reputation
    1220
    Thanks
    7,395
    My Mood
    Stressed
    wrong section. you should post it to WarRock Help Section.

    -_-

  7. #6
    Anonymouse123's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Posts
    33
    Reputation
    10
    Thanks
    230
    Code:
    #include <windows.h>
    #include <stdio.h>
    
    
    //--------------------------Define Hacks--------------------------//
    
    #define ADR_PlayerPointer 0x00
    #define ADR_ServerPointer 0x00
    #define ADR_Glasswall 0x00
    
    
    //--------------------------End Define Addies--------------------------//
    
    //--------------------------Define HackThread--------------------------//
    
    DWORD *ingame= (DWORD*)ADR_PlayerPointer;
    DWORD *outgame= (DWORD*)ADR_ServerPointer;
    
    
    
    //--------------------------Start Hacks--------------------------//
    
    void GWall()
    {
    if(GetKeyState(VK_MBUTTON)&1)
    *(int*)(ADR_Glasswall) = 1;
    else
    {
    *(int*)(ADR_Glasswall) = 0;
    }
    }
    
    
    
    void Hacktread()
    {
    for(;; )
    {
    if(*ingame)
    {
    GWall();
    }
    if(*outgame)
    {
    
    }
    Sleep(200);
    }
    }
    
    BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwReason, LPVOID lpvReserved)
    {
    if(dwReason == DLL_PROCESS_ATTACH)
    {
    MessageBoxA(NULL,"Your Name","Yamashi",MB_OK);
    CreateThread(0, 0, (LPTHREAD_START_ROUTINE)Hacktread, 0, 0, 0);Sleep(700);
    }
    return TRUE;
    }
    Last edited by Mayion; 02-28-2014 at 01:57 AM.

Similar Threads

  1. [Help Request] PLEASE HELP ME !!!
    By gusde07 in forum CrossFire Help
    Replies: 7
    Last Post: 09-10-2012, 08:26 PM
  2. [Help Request] Please Help
    By tongakilo in forum CrossFire Help
    Replies: 12
    Last Post: 05-22-2011, 03:02 AM
  3. [Help Request] Black Cipher Help [please help]
    By zubni in forum Combat Arms Help
    Replies: 25
    Last Post: 05-14-2011, 07:50 PM
  4. [Help Request] please help me
    By 0wninglolz in forum Combat Arms Help
    Replies: 2
    Last Post: 05-08-2011, 06:03 AM
  5. [Help Request] please help !
    By noaznoaz in forum Combat Arms EU Help
    Replies: 0
    Last Post: 05-03-2011, 06:11 AM