Page 1 of 2 12 LastLast
Results 1 to 15 of 21
  1. #1
    moathebest's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    308
    Reputation
    17
    Thanks
    249
    My Mood
    Paranoid

    Talking Shy To Put This Code For Help.... But Got No where Else To Go For Help :(

    Solved/req close
    @Doctor<< Why the rude answer =.=
    @sopaver3 <<thx
    Last edited by moathebest; 11-28-2011 at 03:37 PM.
    V4 The best Release..No joke... 4 More Features!! Here is the link

    https://www.mpgh.net/forum/175-crossf...ures-best.html


  2. #2
    sopaver3's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    A million miles away
    Posts
    335
    Reputation
    9
    Thanks
    202
    My Mood
    Happy
    @moathebest your code is wrong, if you want , correct code, working PM me
    A question is never stupid, only an answear can be stupid.
    Yesterday was history. Tomorrow is mystery. But today is a gift.
    That's why it's called present.


  3. #3
    Fly3r's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    Not telling.
    Posts
    720
    Reputation
    18
    Thanks
    265
    My Mood
    Paranoid
    Why you Define the offsets when ur not using the name with which u defined them ?
    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?




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

    GunBoy120 (11-28-2011)

  5. #4
    xceman's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    35
    Reputation
    10
    Thanks
    2
    My Mood
    Doh
    Eh it's no menu i quess right?
    I think you don't need the
    Code:
    if(pGhostMgr)
    	{
    *(float*)(GhostMgr + 0x88) = 300.0f;
    *(float*)(GhostMgr + 0x8C) = 300.0f;
    *(float*)(GhostMgr + 0x90) = 300.0f;
    *(float*)(GhostMgr + 0x94) = 2.0f;
    
    	}
    Try delete if(pGhostMgr) and tell me what happen.At first you can try it.You delete the if,cause it's not a d3d with on off function.
    It's auto change,so it doesn't need something like if and others.
    Oh ya and delete { }

  6. #5
    moathebest's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    308
    Reputation
    17
    Thanks
    249
    My Mood
    Paranoid
    Quote Originally Posted by Fly3r View Post
    Why you Define the offsets when ur not using the name with which u defined them ?
    Does it matter??
    V4 The best Release..No joke... 4 More Features!! Here is the link

    https://www.mpgh.net/forum/175-crossf...ures-best.html


  7. #6
    xceman's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    35
    Reputation
    10
    Thanks
    2
    My Mood
    Doh
    Quote Originally Posted by moathebest View Post
    Does it matter??
    No,but it's kind fail,that you write the offsets in define,and you rewrite them in function.

  8. #7
    moathebest's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    308
    Reputation
    17
    Thanks
    249
    My Mood
    Paranoid
    Quote Originally Posted by xceman View Post
    Eh it's no menu i quess right?
    I think you don't need the
    Code:
    if(pGhostMgr)
    	{
    *(float*)(GhostMgr + 0x88) = 300.0f;
    *(float*)(GhostMgr + 0x8C) = 300.0f;
    *(float*)(GhostMgr + 0x90) = 300.0f;
    *(float*)(GhostMgr + 0x94) = 2.0f;
    
    	}
    Try delete if(pGhostMgr) and tell me what happen.At first you can try it.You delete the if,cause it's not a d3d with on off function.
    It's auto change,so it doesn't need something like if and others.
    Oh ya and delete { }
    What are u saying...i must put the ghost Mgr..this doesnt sound sensable..any way tried it and i as i expected.."Send Error Report"

    Quote Originally Posted by Fly3r View Post
    Why you Define the offsets when ur not using the name with which u defined them ?
    This is not why it doesnt work..any way doesnt matter
    Last edited by Jacket; 11-28-2011 at 05:53 PM.
    V4 The best Release..No joke... 4 More Features!! Here is the link

    https://www.mpgh.net/forum/175-crossf...ures-best.html


  9. #8
    xceman's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    35
    Reputation
    10
    Thanks
    2
    My Mood
    Doh
    Quote Originally Posted by moathebest View Post
    What are u saying...i must put the ghost Mgr..this doesnt sound sensable..any way tried it and i as i expected.."Send Error Report"
    But if is for functions like D3D or click button.A nomenu is automatic change.
    But only if you use hotkey,then you can make if...

    Anyway,try make


    Code:
    void Hacks()
    DWORD CShell = (DWORD)GetModuleHandleA("CShell.dll");
    DWORD pGhostMgr = *(DWORD*)(CShell + 0xA02208);
    {
    *(float*)(GhostMgr + 0x88) = 300.0f;
    *(float*)(GhostMgr + 0x8C) = 300.0f;
    *(float*)(GhostMgr + 0x90) = 300.0f;
    *(float*)(GhostMgr + 0x94) = 2.0f;
    }
    
    }
    
    
    void HackThread()
    {
    for(;; )
    {
    Hacks;
    Sleep(200);
    }
    }
    
    BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
    {
    DisableThreadLibraryCalls(hDll);
    
    if ( dwReason == DLL_PROCESS_ATTACH )
    {
    
    MessageBoxA(0, "Credits- moathebest","Beta Hack", 0);
    
    
    CreateThread(0,0,(LPTHREAD_START_ROUTINE)HackThread,0,0, 0);
    }
    return 1;
    }

    I think this may work.

  10. #9
    sopaver3's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    A million miles away
    Posts
    335
    Reputation
    9
    Thanks
    202
    My Mood
    Happy
    @xceman I already helped him, and I think its working 100%
    A question is never stupid, only an answear can be stupid.
    Yesterday was history. Tomorrow is mystery. But today is a gift.
    That's why it's called present.


  11. #10
    Swag's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Location
    Netherlands
    Posts
    1,619
    Reputation
    19
    Thanks
    1,865
    My Mood
    Amused
    Quote Originally Posted by xceman View Post
    But if is for functions like D3D or click button.A nomenu is automatic change.
    But only if you use hotkey,then you can make if...

    Anyway,try make


    Code:
    void Hacks()
    DWORD CShell = (DWORD)GetModuleHandleA("CShell.dll");
    DWORD pGhostMgr = *(DWORD*)(CShell + 0xA02208);
    {
    *(float*)(GhostMgr + 0x88) = 300.0f;
    *(float*)(GhostMgr + 0x8C) = 300.0f;
    *(float*)(GhostMgr + 0x90) = 300.0f;
    *(float*)(GhostMgr + 0x94) = 2.0f;
    }
    
    }
    
    
    void HackThread()
    {
    for(;; )
    {
    Hacks;
    Sleep(200);
    }
    }
    
    BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
    {
    DisableThreadLibraryCalls(hDll);
    
    if ( dwReason == DLL_PROCESS_ATTACH )
    {
    
    MessageBoxA(0, "Credits- moathebest","Beta Hack", 0);
    
    
    CreateThread(0,0,(LPTHREAD_START_ROUTINE)HackThread,0,0, 0);
    }
    return 1;
    }

    I think this may work.
    totally wrong.

  12. #11
    xceman's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    35
    Reputation
    10
    Thanks
    2
    My Mood
    Doh
    Quote Originally Posted by sopaver3 View Post
    @xceman I already helped him, and I think its working 100%
    Okey

    Quote Originally Posted by michielr View Post
    totally wrong.
    Huh?
    For me is working.I tried it for all games,and it work o:

  13. #12
    moathebest's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    308
    Reputation
    17
    Thanks
    249
    My Mood
    Paranoid
    Quote Originally Posted by xceman View Post
    But if is for functions like D3D or click button.A nomenu is automatic change.
    But only if you use hotkey,then you can make if...

    Anyway,try make


    Code:
    void Hacks()
    DWORD CShell = (DWORD)GetModuleHandleA("CShell.dll");
    DWORD pGhostMgr = *(DWORD*)(CShell + 0xA02208);
    {
    *(float*)(GhostMgr + 0x88) = 300.0f;
    *(float*)(GhostMgr + 0x8C) = 300.0f;
    *(float*)(GhostMgr + 0x90) = 300.0f;
    *(float*)(GhostMgr + 0x94) = 2.0f;
    }
    
    }
    
    
    void HackThread()
    {
    for(;; )
    {
    Hacks;
    Sleep(200);
    }
    }
    
    BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
    {
    DisableThreadLibraryCalls(hDll);
    
    if ( dwReason == DLL_PROCESS_ATTACH )
    {
    
    MessageBoxA(0, "Credits- moathebest","Beta Hack", 0);
    
    
    CreateThread(0,0,(LPTHREAD_START_ROUTINE)HackThread,0,0, 0);
    }
    return 1;
    }

    I think this may work.
    Thx but @sopaver3 helped me ..any way i put if on the other hacks like No recoil..and its auto on and works
    V4 The best Release..No joke... 4 More Features!! Here is the link

    https://www.mpgh.net/forum/175-crossf...ures-best.html


  14. #13
    Swag's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Location
    Netherlands
    Posts
    1,619
    Reputation
    19
    Thanks
    1,865
    My Mood
    Amused
    it don't work for me.

  15. #14
    xceman's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    35
    Reputation
    10
    Thanks
    2
    My Mood
    Doh
    Oups yeah i did a bit wrong in code ._.

    Code:
    DWORD CShell = (DWORD)GetModuleHandleA("CShell.dll");
    DWORD pGhostMgr = *(DWORD*)(CShell + 0xA02208);
    Shouldn't be in Hacks function.
    Well since sop helped you

  16. #15
    Zacherl's Avatar
    Join Date
    May 2009
    Gender
    male
    Posts
    150
    Reputation
    10
    Thanks
    42
    My Mood
    Aggressive
    Oh god. There is no single line of code, that you did by yourself. Go, open 10 more threads an beg for code and offsets. Its pathetic.

Page 1 of 2 12 LastLast

Similar Threads

  1. I Paid for vip but got no code
    By nikmic1 in forum General
    Replies: 2
    Last Post: 07-23-2011, 09:01 AM
  2. I need help with this code in C#
    By trevor206 in forum Programming Tutorial Requests
    Replies: 0
    Last Post: 08-18-2009, 05:40 PM
  3. i cant find a place to put this but i need help!
    By Creepninja in forum CrossFire Hacks & Cheats
    Replies: 4
    Last Post: 06-13-2009, 12:11 AM
  4. I'm Not really sure where to put this.. But Im just wondering. :)
    By monkey32 in forum General Game Hacking
    Replies: 0
    Last Post: 03-30-2009, 03:49 PM
  5. sorry to put this in the wrong place but
    By l3artt in forum WarRock - International Hacks
    Replies: 14
    Last Post: 07-20-2007, 02:16 PM