Page 1 of 2 12 LastLast
Results 1 to 15 of 18
  1. #1
    XXkillerFin1's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    Finland
    Posts
    125
    Reputation
    10
    Thanks
    81
    My Mood
    Confused

    Angry Need help in base

    Here is my simple base(Followed tutorial)
    Code:
    #include <windows.h>
    
    #define WeaponPointer 0xFCC5A4
    #define NoReload 0xC3C
    
    bool noreload = true;
    
    DWORD CShell = (DWORD)GetModuleHandleA("CShell.dll");
    DWORD pWeaponMgr = *(DWORD*)(CShell + WeaponPointer);
    
    void Hacks()
    {
        for(;;){
    			*(char*)(CShell + 0x42D43C) = 'G'; //no bug damage(not sure if working)
    //No Reload(Not sure if pointers are correct)
    if(noreload)
    {
    if (pWeaponMgr)
    {
    for(int i=0; i<445; i++)
    {
    if((*(DWORD*)((*(DWORD*)(CShell+pWeaponMgr))+(4*i))) != NULL)
    *(float*)((*(DWORD*)((*(DWORD*)(CShell+pWeaponMgr))+(4*i))) + NoReload) = 100;
    }
    }
    }
    		Sleep(50);
    	}
    }
    
    BOOL WINAPI DllMain(HINSTANCE module, DWORD dwReason, LPVOID lpvReserved)
    {
    	if(dwReason == DLL_PROCESS_ATTACH)
    	{
    		CreateThread(0, 0, (LPTHREAD_START_ROUTINE)Hacks, 0, 0, 0);
    		MessageBoxA(0, "Have Fun!\nBy XXkillerFin\nwww.MPGH.net", "Injected!", 0);
    	}
    	return TRUE;
    }
    Not big suprise if source is failed because I am not PRO coder and not PRO in C++.

    So, I need help in Error, Xtrap will detect it when I inject it in game and I will put picture of it.


    Way to Bypass this? Sorry If noob Q, I really need help
    EDIT:Sorry about my English
    Attached Thumbnails Attached Thumbnails
    Xtrap Error.jpg  

    Last edited by XXkillerFin1; 06-11-2013 at 02:30 PM.

  2. #2
    sobasoba13's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    So Far Away
    Posts
    1,145
    Reputation
    23
    Thanks
    1,607
    My Mood
    Relaxed
    It's detected already !!!
    Crossfire Projects
    Made 21 Feature (Memory Hack)
    Respect List
    @ComboDance
    @mamo007
    @GaaD
    @Olwayy
    @Biesi
    @iSmexy
    @derh.acker
    @Brimir
    @steveroseik
    @Hero
    @Temperrr
    @Rullez
    PressIF I Helped

  3. #3
    XXkillerFin1's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    Finland
    Posts
    125
    Reputation
    10
    Thanks
    81
    My Mood
    Confused
    Need to make it undetected

  4. #4
    6ixth's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    3,032
    Reputation
    661
    Thanks
    19,948
    Code:
    #define WeaponMgr 0xDB1694
    Last edited by 6ixth; 06-11-2013 at 07:12 PM.

  5. #5
    JamesRo's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Posts
    1,872
    Reputation
    182
    Thanks
    17,855
    My Mood
    Happy
    Remove the Sleep, encrypt the CShell string and use _beginthreadex instead of CreateThread(the last one may not be needed at all), after that it'll be good to go.

  6. The Following User Says Thank You to JamesRo For This Useful Post:

    XXkillerFin1 (06-12-2013)

  7. #6
    XXkillerFin1's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    Finland
    Posts
    125
    Reputation
    10
    Thanks
    81
    My Mood
    Confused
    Code:
    #define WeaponMgr 0xDB1694
    What about that?

    ---------- Post added at 03:56 AM ---------- Previous post was at 03:53 AM ----------

    @JamesRo Cant use _beginthreadex

    ---------- Post added at 04:10 AM ---------- Previous post was at 03:56 AM ----------

    @JamesRo It's working! I mean It's undetected but hacks are not working. I think I fucked uo the pointers and offsets and other stuff

  8. #7
    rabir007's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    Behind you...
    Posts
    2,323
    Reputation
    148
    Thanks
    1,925
    My Mood
    Bored
    Quote Originally Posted by XXkillerFin1 View Post
    Code:
    #define WeaponMgr 0xDB1694
    What about that?

    ---------- Post added at 03:56 AM ---------- Previous post was at 03:53 AM ----------

    @JamesRo Cant use _beginthreadex

    ---------- Post added at 04:10 AM ---------- Previous post was at 03:56 AM ----------

    @JamesRo It's working! I mean It's undetected but hacks are not working. I think I fucked uo the pointers and offsets and other stuff
    "CShell.dll" is detected, encrypt it...
    Find a new way to start a new thread...

    For(;; rather use While(true) i think...







  9. #8
    Pingo's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    687
    Reputation
    24
    Thanks
    865
    My Mood
    Blah
    Quote Originally Posted by rabir007 View Post


    "CShell.dll" is detected, encrypt it...
    Find a new way to start a new thread...

    For(;; rather use While(true) i think...
    I disagree, i never encrypt the strings and XT is fine with it.
    Code:
    #pragma region Module base
    
    DWORD scBase,mBase,dBase;
    
    DWORD Shellbase()
    { 
        return !scBase ? (scBase = (DWORD)GetModuleHandle("CShell")) : scBase;
    }
    
    DWORD Mainbase()
    { 
        return !mBase ? (mBase = (DWORD)GetModuleHandle(NULL)) : mBase;
    }
    
    DWORD D3Dbase()
    { 
        return !dBase ? (dBase = (DWORD)GetModuleHandle("d3d9")) : dBase;
    }
    
    #pragma endregion

  10. #9
    rabir007's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    Behind you...
    Posts
    2,323
    Reputation
    148
    Thanks
    1,925
    My Mood
    Bored
    Quote Originally Posted by Pingo View Post
    I disagree, i never encrypt the strings and XT is fine with it.
    Code:
    #pragma region Module base
    
    DWORD scBase,mBase,dBase;
    
    DWORD Shellbase()
    { 
        return !scBase ? (scBase = (DWORD)GetModuleHandle("CShell")) : scBase;
    }
    
    DWORD Mainbase()
    { 
        return !mBase ? (mBase = (DWORD)GetModuleHandle(NULL)) : mBase;
    }
    
    DWORD D3Dbase()
    { 
        return !dBase ? (dBase = (DWORD)GetModuleHandle("d3d9")) : dBase;
    }
    
    #pragma endregion
    Dunno, in C# i don't have to care about these things...







  11. #10
    CFHackerExtreme's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    Germany
    Posts
    245
    Reputation
    10
    Thanks
    561
    My Mood
    Yeehaw
    Or use PCeumels "Undetected Methode"

    https://www.mpgh.net/forum/242-crossf...-hacks-ud.html

  12. #11
    XXkillerFin1's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    Finland
    Posts
    125
    Reputation
    10
    Thanks
    81
    My Mood
    Confused
    Quote Originally Posted by rabir007 View Post


    "CShell.dll" is detected, encrypt it...
    Find a new way to start a new thread...

    For(;; rather use While(true) i think...
    EVERYONE! This thing is now undetected! But i really need new addys to get this working(I'm not begging). And btw, I encryped CShell.dll now.

  13. #12
    rabir007's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    Behind you...
    Posts
    2,323
    Reputation
    148
    Thanks
    1,925
    My Mood
    Bored
    Quote Originally Posted by XXkillerFin1 View Post
    EVERYONE! This thing is now undetected! But i really need new addys to get this working(I'm not begging). And btw, I encryped CShell.dll now.
    There are plenty of released Addy Log...







  14. #13
    XXkillerFin1's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    Finland
    Posts
    125
    Reputation
    10
    Thanks
    81
    My Mood
    Confused
    Quote Originally Posted by rabir007 View Post


    There are plenty of released Addy Log...
    Hacks are still not working
    Helping newbies in coding
    Skype:aksuli21

  15. #14
    rabir007's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    Behind you...
    Posts
    2,323
    Reputation
    148
    Thanks
    1,925
    My Mood
    Bored
    Quote Originally Posted by XXkillerFin1 View Post
    Hacks are still not working
    PM the base, let me check it...







  16. #15
    XXkillerFin1's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    Finland
    Posts
    125
    Reputation
    10
    Thanks
    81
    My Mood
    Confused
    It's undetected now and and injection is fine but hacks are not working, I updated the addys but still not working. I think the problem is in void Hacks()
    Code:
    void Hacks()
    {
    	bool noreload = true;
        while(1){
    		*(char*)(CShell + 0x438ABC) = 0; //damage per second = 0(in dmgZone)
    		*(char*)(CShell + 0x438ACC) = 'G'; //no bug damage(not sure if working)
    //No Reload
    if(noreload)
    {
    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;
    }
    }
    }
    	}
    }
    I'm sure Addys are up to date!
    Helping newbies in coding
    Skype:aksuli21

Page 1 of 2 12 LastLast

Similar Threads

  1. i need help with Base
    By wicho_koz in forum Combat Arms Coding Help & Discussion
    Replies: 11
    Last Post: 07-13-2011, 04:30 PM
  2. Need Help Noob base Hacks
    By golfitup in forum Combat Arms Help
    Replies: 2
    Last Post: 03-05-2011, 03:27 PM
  3. need help fixing A detected base
    By lakha in forum Combat Arms EU Hack Coding/Source Code
    Replies: 1
    Last Post: 09-13-2010, 11:17 AM
  4. need help building a base hack
    By Sneaky Fox in forum CrossFire Help
    Replies: 7
    Last Post: 09-03-2010, 07:30 PM
  5. need help with base
    By Andrew89898 in forum Combat Arms EU Hack Coding/Source Code
    Replies: 8
    Last Post: 08-18-2010, 09:48 PM

Tags for this Thread