Results 1 to 12 of 12
  1. #1
    nageeb123's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    why you want to know?
    Posts
    657
    Reputation
    -25
    Thanks
    148
    My Mood
    Angelic

    Urgent need help pls fast

    hey guys i just finish my 1st hack and its not leched buti have problem when i inject it the msg box dont pop up why can any 1 help me here is the code
    here is the code dont leche it

    Code:
    #include <windows.h>
    
    #define grenades ((i==6)||(i==7)||(i==8)||(i==64)||(i==100)||(i==12 6)||(i==135)||(i==209)||(i==210)||(i==240)||(i==26 3)||(i==272)||(i==338)||(i==382)||(i==383)||(i==38 4))
    
    
    #define WeaponMgr 0xA2A7E8
    #define NoReload 0x2424
    #define WeaponDamage 0x07f8
    #define WeaponWeight 0x21DC
    #define SpeedHack 0x21D8
    #define NoChangeDelay 0x2428
    #define hitkill 0x0754
    
    
    float Hithard = 999.0f;
    float FragDmg = 0.0f;
    float weapweight = 0.0f;
    
    
    
    DWORD WINAPI Hacks(LPVOID)
    {
    bool onehit = false,
    reload = false,
    fragdmg = false,
    weweight = false,
    spehack = false,
    changedelay = false;
    
    
    
    
    while(1)
    {
    DWORD CShell = (DWORD)GetModuleHandleA("CShell.dll");
    DWORD pWeaponMgr = *(DWORD*)(CShell + WeaponMgr);
    
    //hotkeys toggle + beep sounds
    if(GetAsyncKeyState(VK_F7) || GetAsyncKeyState(VK_NUMPAD0) &1) { changedelay = true; Beep(512, 100); }
    if(GetAsyncKeyState(VK_F8) || GetAsyncKeyState(VK_NUMPAD1) &1) { spehack = true; Beep(512, 100); }
    if(GetAsyncKeyState(VK_F9) || GetAsyncKeyState(VK_NUMPAD2) &1) { onehit = true; Beep(512, 100); }
    if(GetAsyncKeyState(VK_F10) || GetAsyncKeyState(VK_NUMPAD3) &1) { reload = true; Beep(512, 100); }
    if(GetAsyncKeyState(VK_F11) || GetAsyncKeyState(VK_NUMPAD4) &1) { fragdmg = true; Beep(512, 100); }
    if(GetAsyncKeyState(VK_F12) || GetAsyncKeyState(VK_NUMPAD5) &1) { weweight = true; Beep(512, 100); }
    
    
    //one hit kill
    if(onehit)
    {
    if (pWeaponMgr)
    {
    for(int i=0; i<445; i++)
    {
    if((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr))+(4*i)) ) != NULL)
    *(float*)((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr)) +(4*i))) + WeaponDamage) = Hithard;
    }
    }
    }
    
    //no reload
    if(reload)
    {
    if (pWeaponMgr)
    {
    for(int i=0; i<445; i++)
    {
    if((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr))+(4*i)) ) != NULL)
    *(float*)((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr)) +(4*i))) + NoReload) = 100;
    }
    }
    }
    
    
    //no weapon weight
    if(weweight)
    {
    if (pWeaponMgr)
    {
    for(int i=0; i<445; i++)
    {
    if((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr))+(4*i)) ) != NULL)
    *(float*)((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr)) +(4*i))) + WeaponWeight) = weapweight;
    }
    }
    }
    
    
    
    //speed hack
    if(spehack)
    {
    if (pWeaponMgr)
    {
    for(int i=0; i<445; i++)
    {
    if((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr))+(4*i)) ) != NULL)
    *(float*)((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr)) +(4*i))) + SpeedHack) = -0,18;
    }
    }
    }
    
    //no change delay
    if(changedelay)
    {
    if (pWeaponMgr)
    {
    for(int i=0; i<445; i++)
    {
    if((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr))+(4*i)) ) != NULL)
    *(float*)((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr)) + (4*i))) + NoChangeDelay) = 9999;
    }
    }
    }
    
    
    
    
    //no grenade damage
    if(fragdmg)
    {
    if (pWeaponMgr)
    {
    for(int i=0; i<445; i++)
    {
    if((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr))+(4*i)) ) != NULL && ("grenades"))
    *(float*)((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr)) +(4*i))) + WeaponDamage) = FragDmg;
    }
    }
    }
    Sleep(100);
    }
    }
    
    
    
    bool Ready2Hook()
    {
    if(GetModuleHandleA("CShell.dll") != NULL
    && GetModuleHandleA("ClientFx.fxd") != NULL)
    return 1;
    return 0;
    }
    
    DWORD WINAPI Wait(LPVOID)
    {
    while(!Ready2Hook()) Sleep(200);
    CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)Hacks, NULL, NULL, NULL);
    return 0;
    }
    
    BOOL WINAPI Main ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved ) {
        DisableThreadLibraryCalls(hDll);
    
        if ( dwReason == DLL_PROCESS_ATTACH ) {
            MessageBoxA(0,"Coded nageeb","Injected", 0);
      CreateThread(0,0,(LPTHREAD_START_ROUTINE)Wait,0,0,0);
        }
    
        return true;
    
    }
    @OoSiMpSoNsoO @topblast @***** @kmanev073 @[[SeXergy]] @xXAznrulzXx and you all hlep me pls
    Last edited by nageeb123; 08-12-2011 at 07:16 AM.

  2. #2
    giniyat202's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    in my house
    Posts
    286
    Reputation
    9
    Thanks
    258
    My Mood
    Cheerful
    use BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )

  3. #3
    nageeb123's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    why you want to know?
    Posts
    657
    Reputation
    -25
    Thanks
    148
    My Mood
    Angelic
    @giniyat202 the msgbox dont pop up same problem

  4. #4
    giniyat202's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    in my house
    Posts
    286
    Reputation
    9
    Thanks
    258
    My Mood
    Cheerful
    open teamviewer, pm me your id and pw and give me the source and i will compile for you

    EDIT:need bypassxtrap

  5. #5
    nageeb123's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    why you want to know?
    Posts
    657
    Reputation
    -25
    Thanks
    148
    My Mood
    Angelic
    Quote Originally Posted by giniyat202 View Post
    open teamviewer, pm me your id and pw and give me the source and i will compile for you
    ok there id 813 795 839 pw7614 @giniyat202

  6. #6
    Royku's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    G-Force.dll
    Posts
    3,015
    Reputation
    381
    Thanks
    3,308
    My Mood
    Devilish
    Dont be a leecher and C+P SwiftDude..

  7. #7
    nageeb123's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    why you want to know?
    Posts
    657
    Reputation
    -25
    Thanks
    148
    My Mood
    Angelic
    Quote Originally Posted by royku View Post
    Dont be a leecher and C+P SwiftDude..
    i did not i swear i larned and my bro hleped me to

  8. #8
    kmanev073's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Location
    Bulgaria
    Posts
    2,400
    Reputation
    97
    Thanks
    2,537
    My Mood
    Cool
    addy mistakes and olso other mistakes from the base dont try to lie its swiftdude's base i know that is ;D

  9. #9
    “I fear the day technology will surpass our human interaction. The world will have a generation of idiots.” ~Albert Einstein
    MPGH Member
    SteamAss's Avatar
    Join Date
    Nov 2010
    Gender
    male
    Location
    Crossfire
    Posts
    2,278
    Reputation
    28
    Thanks
    770
    My Mood
    Asleep
    OMG I think ur bro... C+P the base and jsut helped... u to make SwiftDudes base..



    If you need my Help:
    PM/VM

    Because The People Who Are Crazy Enough To Think They Can Change The World, Are The Ones Who Do. ~Steve Jobs

  10. #10
    giniyat202's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    in my house
    Posts
    286
    Reputation
    9
    Thanks
    258
    My Mood
    Cheerful
    does my fix works for you?

  11. #11
    nageeb123's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    why you want to know?
    Posts
    657
    Reputation
    -25
    Thanks
    148
    My Mood
    Angelic
    @giniyat202 no i pm you pm me

  12. #12
    b10821321's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    28
    Reputation
    10
    Thanks
    1
    Noob leecher -.-"

Similar Threads

  1. Need help pls (sorry about last post didnt know how to edit so started a new one)
    By candylinjack2 in forum Alliance of Valiant Arms (AVA) Hacks & Cheats
    Replies: 15
    Last Post: 03-13-2010, 01:28 PM
  2. [URGENT!! NEED HELP RIGHT AWAY]
    By lingfei1994 in forum Combat Arms Mods & Rez Modding
    Replies: 23
    Last Post: 02-27-2010, 07:59 AM
  3. pls i need help pls pls pls i cant play !
    By foggi in forum CrossFire Hacks & Cheats
    Replies: 4
    Last Post: 10-14-2009, 10:24 AM
  4. About Warrock... Need help pls.
    By william1033 in forum WarRock - International Hacks
    Replies: 2
    Last Post: 06-25-2009, 12:04 PM
  5. urgent! need help please !!!!!!
    By iwanthacks121 in forum Debate Fort
    Replies: 8
    Last Post: 12-24-2007, 01:34 PM