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

    this see ghosts hack crashes crossfire..... why?!?

    When the dll is injected, messagebox comes up, then "Client MFC application has encountered an error and needs to close"

    What would be causing it??

    Code: (it is for see ghosts)
    Code:
    #include <windows.h>
    
    #define GhostMgr 0xA021F8
    
    void SeeGhosts()
    {
        DWORD CShell = NULL;
        do
        {
            CShell = (DWORD)GetModuleHandleA("CShell.dll");
            Sleep(100);
        }
        while (CShell == NULL);
        while (1)
        {
            CShell = (DWORD)GetModuleHandleA("CShell.dll");
            DWORD cGhostMgr = (DWORD)(CShell + GhostMgr);
    
            *(float*)(cGhostMgr + 0x88) = 1.0f;
            *(float*)(cGhostMgr + 0x8C) = 1.0f;
            *(float*)(cGhostMgr + 0x90) = 1.0f;
    
            Sleep(100);
        }
    }
    
    extern "C" __declspec(dllexport) BOOL APIENTRY DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
    {
        if(fdwReason == DLL_PROCESS_ATTACH)
        {
            DisableThreadLibraryCalls(hinstDLL);
            CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)SeeGhosts, NULL, NULL, NULL);
            char msg[] = {'H', 'a', 'c', 'k', ' ', 'b', 'y', ' ', '_', 'c', 'o', 'r', 'n', '_', '\0'};
            char title[] = {'I', 'n', 'j', 'e', 'c', 't', 'e', 'd', '\0'};
            MessageBox(NULL, msg, title, MB_OK);
            return 0;
        }
        return 0;
    }

  2. #2
    Fly3r's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    Not telling.
    Posts
    720
    Reputation
    18
    Thanks
    265
    My Mood
    Paranoid
    Dunno if u knnow it but the value for see ghosts is 300.0f
    Joined MPGH: 07/08/09


    i used to tell arrow to the knee jokes then i died due to blood loss from takeing tomany arrows to the knee at once
    A network problem caused by you? What did you do? Trip over the cable?




  3. The Following User Says Thank You to Fly3r For This Useful Post:

    _corn_ (12-30-2011)

  4. #3
    Coder[Vb10e]'s Avatar
    Join Date
    Jul 2011
    Gender
    male
    Location
    Crossfire Alaska
    Posts
    1,577
    Reputation
    -10
    Thanks
    349
    My Mood
    Fine
    Quote Originally Posted by Fly3r View Post
    Dunno if u knnow it but the value for see ghosts is 300.0f
    yeah he is right

  5. #4
    MasterOf's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Location
    >.<
    Posts
    108
    Reputation
    10
    Thanks
    183
    My Mood
    Aggressive
    Code:
    void GhostMgr()
    {
    Code:
    Value 300;
    hope it works

  6. #5
    BlackLite's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    547
    Reputation
    58
    Thanks
    1,035
    My Mood
    Aggressive
    Use PlayerBasicInfo Pointer , 3/4 Offset , PFLOAT , DWORD = (FLOAT)300.0f;

    Note*: 0 + 1 Value Give's See Ghost But not a full on chrectar's .
    Last edited by BlackLite; 12-30-2011 at 05:41 AM.

  7. #6
    MasterOf's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Location
    >.<
    Posts
    108
    Reputation
    10
    Thanks
    183
    My Mood
    Aggressive
    See ghost have 3 offset my friend

  8. #7
    _corn_'s Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    0x0C482BF2
    Posts
    673
    Reputation
    13
    Thanks
    294
    My Mood
    Brooding
    Quote Originally Posted by BlackLite View Post
    Use PlayerBasicInfo Pointer , 3/4 Offset , PFLOAT , DWORD = (FLOAT)300.0f;

    Note*: 0 + 1 Value Give's See Ghost But not a full on chrectar's .
    You mean I should use the PlayerBasicInfo pointer instead of GhostMgr?? What is the address for it?

    What do you mean by 3/4 offset?

    Are you saying I should use PFLOAT instead of float* ? Are they the same?

    ---------- Post added at 08:03 AM ---------- Previous post was at 07:56 AM ----------

    @CFhackerfree , you made a hack with see ghosts... can you help?

    @giniyat101
    @michielr
    can you help?
    Last edited by Hero; 12-30-2011 at 08:00 PM.

  9. #8
    _corn_'s Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    0x0C482BF2
    Posts
    673
    Reputation
    13
    Thanks
    294
    My Mood
    Brooding
    urr... can someone help me???

  10. #9
    MasterOf's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Location
    >.<
    Posts
    108
    Reputation
    10
    Thanks
    183
    My Mood
    Aggressive
    Dam make this >.<

    Code:
    #include <windows.h>
    
    #define GhostMgr 0xA021F8
    
    void GhostMgr()
    {
        DWORD CShell = NULL;
        do
        {
            CShell = (DWORD)GetModuleHandleA("CShell.dll");
            Sleep(100);
        }
        while (CShell == NULL);
        while (1)
        {
            CShell = (DWORD)GetModuleHandleA("CShell.dll");
            DWORD cGhostMgr = (DWORD)(CShell + GhostMgr);
    
            *(float*)(GhostMgr + 0x88) = 300;
            *(float*)(GhostMgr  + 0x8C) =  300;
            *(float*)(GhostMgr  + 0x90) =  300;
    
            Sleep(100);
        }
    }
    
    extern "C" __declspec(dllexport) BOOL APIENTRY DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
    {
        if(fdwReason == DLL_PROCESS_ATTACH)
        {
            DisableThreadLibraryCalls(hinstDLL);
            CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)SeeGhosts, NULL, NULL, NULL);
            char msg[] = {'H', 'a', 'c', 'k', ' ', 'b', 'y', ' ', '_', 'c', 'o', 'r', 'n', '_', '\0'};
            char title[] = {'I', 'n', 'j', 'e', 'c', 't', 'e', 'd', '\0'};
            MessageBox(NULL, msg, title, MB_OK);
            return 0;
        }
        return 0;
    }
    other you make so
    Code:
     if(GhostMgr)
                    {
                       *(float*)(GhostMgr + 0x88) = 300;
                       *(float*)(GhostMgr + 0x8C) = 300;
                       *(float*)(GhostMgr + 0x90) = 300;
                    }
    Hope it works
    Last edited by MasterOf; 12-31-2011 at 05:31 AM.

  11. #10
    Assassin's Creed's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Posts
    1,210
    Reputation
    54
    Thanks
    1,408
    My Mood
    Worried
    Its not the proplem that he doesnt see ghosts...the proplem is that CF crashes...
     

    Contributer Since 20/2/2012
    MPGH Member Since December 2011

     





     

    offical thread> Assassin V15<

    To all People who thinks am a leecher,hate me,are jelly from me....
    Refer to this thread...
    https://www.mpgh.net/forum/232-crossf...stop-hate.html

  12. #11
    MasterOf's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Location
    >.<
    Posts
    108
    Reputation
    10
    Thanks
    183
    My Mood
    Aggressive
    @Assassin's Creed

    i know he have the value (1.0f

    its wrong

    he must test it with the source where is post

  13. #12
    Assassin's Creed's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Posts
    1,210
    Reputation
    54
    Thanks
    1,408
    My Mood
    Worried
    Quote Originally Posted by MasterOf View Post
    @Assassin's Creed

    i know he have the value (1.0f

    its wrong

    he must test it with the source where is post
    if the value is wrong then the hack would do nothing...not CF crash....
     

    Contributer Since 20/2/2012
    MPGH Member Since December 2011

     





     

    offical thread> Assassin V15<

    To all People who thinks am a leecher,hate me,are jelly from me....
    Refer to this thread...
    https://www.mpgh.net/forum/232-crossf...stop-hate.html

  14. #13
    CFhackerfree's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    Germany
    Posts
    801
    Reputation
    22
    Thanks
    4,417
    My Mood
    Happy
    @Assassin's Creed
    The value was wrong !!

    out make you the see ghost with value 1.0f; o.0

  15. #14
    Assassin's Creed's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Posts
    1,210
    Reputation
    54
    Thanks
    1,408
    My Mood
    Worried
    Quote Originally Posted by ownernl View Post
    He knows the value is wrong, he says that it should not be crashing.
    Quote Originally Posted by CFhackerfree View Post
    @Assassin's Creed
    The value was wrong !!

    out make you the see ghost with value 1.0f; o.0
    I know the value is wrong but that isnt why it is crashing....
     

    Contributer Since 20/2/2012
    MPGH Member Since December 2011

     





     

    offical thread> Assassin V15<

    To all People who thinks am a leecher,hate me,are jelly from me....
    Refer to this thread...
    https://www.mpgh.net/forum/232-crossf...stop-hate.html

  16. #15
    _corn_'s Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    0x0C482BF2
    Posts
    673
    Reputation
    13
    Thanks
    294
    My Mood
    Brooding
    Yeah, @Assassin's Creed is right, i changed it to 300.0f, still crashes cf.

Page 1 of 4 123 ... LastLast

Similar Threads

  1. [Request] See Ghost Hack Request
    By vtrang1 in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 6
    Last Post: 12-30-2011, 12:31 PM
  2. NEED A SEE GHOST HACK
    By frycook89 in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 2
    Last Post: 09-28-2011, 05:41 PM
  3. Can someone make a wallhack & See Ghost hack??
    By asdqwe1234 in forum CrossFire Help
    Replies: 2
    Last Post: 06-10-2011, 09:44 PM
  4. For questions about the Code of WallHak + See Ghost in the Crossfire
    By vailozchinsu in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 8
    Last Post: 10-03-2010, 01:14 PM
  5. how do i get a see ghost hack
    By john5207 in forum CrossFire Hacks & Cheats
    Replies: 6
    Last Post: 07-08-2009, 10:09 PM