Page 1 of 2 12 LastLast
Results 1 to 15 of 19
  1. #1
    _corn_'s Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    0x0C482BF2
    Posts
    673
    Reputation
    13
    Thanks
    294
    My Mood
    Brooding

    Need help with making hack

    Hi

    I am making a hack for CF, but when I inject it, nothing happens. A messagebox is meant to come up.

    I have put the messagebox in the DllMain bit.

  2. #2
    TrickyTwist's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    Australia
    Posts
    63
    Reputation
    10
    Thanks
    6
    My Mood
    Relaxed
    Show us a screen shot or something of your code then myself or someone else can tell you where you have gone wrong
    I'm Here To Help You
    Post On My Wall For Help Or Personal Message Me

    [IMG]https://www.danasof*****m/vipersig.jpg[/IMG]

  3. #3
    Takari1's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    819
    Reputation
    81
    Thanks
    96
    Is it a public source code or something ?

  4. #4
    Jigsaw's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Moon
    Posts
    23,219
    Reputation
    852
    Thanks
    2,089
    Are you using undetected injector?
    DEHUMANIZE YOURSELF
    AND FACE TO BLOODSHED

  5. #5
    {Banned}**HACKER**'s Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    843
    Reputation
    8
    Thanks
    719
    My Mood
    Cheerful
    Show Us Your Source Code Or Some Of It Or Example Just So We Can Try And Help You!

  6. #6
    _corn_'s Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    0x0C482BF2
    Posts
    673
    Reputation
    13
    Thanks
    294
    My Mood
    Brooding
    Quote Originally Posted by TrickyTwist View Post
    Show us a screen shot or something of your code then myself or someone else can tell you where you have gone wrong

    Here is my code:

    Code:
    #include <windows.h>
    #include <stdio.h>
    
    int Speedhack=0;
    
    DWORD CShellBase = (DWORD) GetModuleHandle("cshell.dll");
    DWORD SpeedHack = CShellBase + 0x5BE458;
    
    void Speed()
    {
    while(1){
    if(GetAsyncKeyState(38)&1){ // 38 is the UP arrow
    Speedhack++;
    if(Speedhack > 2){Speedhack=1;};
    }
    if (Speedhack==1){ // Faster
    *(DWORD*)(*(DWORD*)SpeedHack) = 0x46A29CE8;
    *(DWORD*)((*(DWORD*)SpeedHack) + 0x20) = 0x46A29CE8;
    }
    if(Speedhack==2){ // Normal Speed Value
    *(DWORD*)(*(DWORD*)SpeedHack) = 0x45938DF8;
    *(DWORD*)((*(DWORD*)SpeedHack) + 0x20) = 0x45938DF8;
    }
    Sleep(100);
    }
    }
    BOOL WINAPI DllMain(HINSTANCE module, DWORD dwReason, LPVOID lpvReserved)
    {
    if(dwReason == DLL_PROCESS_ATTACH)
    {
    MessageBox(NULL, "CF Hack By _corn_\nMade for MPGH", "CF Hack", MB_OK);
    CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)Speed, NULL, NULL, NULL);
    }
    return TRUE;
    }

  7. #7
    Tristan's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Location
    MD, Canada
    Posts
    9,209
    Reputation
    19
    Thanks
    496
    My Mood
    Tired
    Is your source right

  8. #8
    _corn_'s Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    0x0C482BF2
    Posts
    673
    Reputation
    13
    Thanks
    294
    My Mood
    Brooding
    Quote Originally Posted by ToxinJr View Post
    Is your source right
    That's what I'm asking!

  9. #9
    Neechan''s Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    HI !
    Posts
    5,722
    Reputation
    122
    Thanks
    1,318
    You mean this?
    Code:
    char Msg[] = {'M','a','d','e',' ','b','y',' ','N','e','e','c','h','a','n',',0 };
    char Title[] = {'N','e','c','h','a','n',' ','v','1','0',0 };

  10. #10
    _corn_'s Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    0x0C482BF2
    Posts
    673
    Reputation
    13
    Thanks
    294
    My Mood
    Brooding
    Quote Originally Posted by Neechan' View Post
    You mean this?
    Code:
    char Msg[] = {'M','a','d','e',' ','b','y',' ','N','e','e','c','h','a','n',',0 };
    char Title[] = {'N','e','c','h','a','n',' ','v','1','0',0 };
    Still doesn't work. When I inject it, nothing happens.

    Quote Originally Posted by Rory View Post
    Are you using undetected injector?
    I am using G-Force injector. Is that detected?
    Last edited by _corn_; 08-27-2011 at 02:10 PM.

  11. #11
    buddyme1's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    140
    Reputation
    10
    Thanks
    5
    G-Force Injector still work

    Try Unreal Injector mayb?

  12. #12
    _corn_'s Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    0x0C482BF2
    Posts
    673
    Reputation
    13
    Thanks
    294
    My Mood
    Brooding
    Quote Originally Posted by buddyme1 View Post
    G-Force Injector still work

    Try Unreal Injector mayb?
    Have tried that injector. Can someone check the source, there must be something wrong.

  13. #13
    Jigsaw's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Moon
    Posts
    23,219
    Reputation
    852
    Thanks
    2,089
    Quote Originally Posted by _corn_ View Post

    I am using G-Force injector. Is that detected?
    No, it works, must be your hack.
    DEHUMANIZE YOURSELF
    AND FACE TO BLOODSHED

  14. #14
    _corn_'s Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    0x0C482BF2
    Posts
    673
    Reputation
    13
    Thanks
    294
    My Mood
    Brooding
    Quote Originally Posted by Rory View Post

    No, it works, must be your hack.
    Sooo...

    Is this all I have to do:
    Build the dll from that source.
    Inject it.

    ?

    A messagebox should appear? but it doesnt. Does it matter when you inject it into cf?
    Last edited by _corn_; 08-27-2011 at 04:04 PM.

  15. #15
    Neechan''s Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    HI !
    Posts
    5,722
    Reputation
    122
    Thanks
    1,318

Page 1 of 2 12 LastLast

Similar Threads

  1. [Help Request] Need help with these hacks..
    By mgelmo11 in forum Vindictus Help
    Replies: 4
    Last Post: 07-28-2011, 10:50 PM
  2. [Help Request] i need help with the hack im using
    By kingster626 in forum Combat Arms Help
    Replies: 12
    Last Post: 06-18-2011, 10:15 PM
  3. [Help Request] I need Help With CAEU Hacks
    By ♪ςander!♪ in forum Combat Arms EU Help
    Replies: 3
    Last Post: 06-08-2011, 03:47 AM
  4. [Help Request] Need help with making binds !
    By JonathanTBM in forum Vindictus Help
    Replies: 4
    Last Post: 05-10-2011, 07:40 PM
  5. Need help with making new mod/hack
    By henky21 in forum CrossFire Mods & Rez Modding
    Replies: 6
    Last Post: 07-01-2010, 11:47 PM