Page 1 of 2 12 LastLast
Results 1 to 15 of 20
  1. #1
    J's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    East Coast
    Posts
    2,164
    Reputation
    452
    Thanks
    5,900
    My Mood
    In Love

    [TUTORIALS] How to auto-update addresses even after patches

    Tutorial 1: How to use signature scans



    ---------------------------------------------------------------------------------------------------------
    1. Add this above the function you create in step 2:
    Code:
    bool Compare(const BYTE* pData, const BYTE* bMask, const char* szMask)
    {
    	for(;*szMask;++szMask,++pData,++bMask)
    		if(*szMask=='x' && *pData!=*bMask)   return 0;
    	return (*szMask) == NULL;
    }
    
    DWORD Pattern(DWORD dwAddress,DWORD dwLen,BYTE *bMask,char * szMask)
    {
    	for(DWORD i=0; i<dwLen; i++)
    		if (Compare((BYTE*)(dwAddress+i),bMask,szMask))  return (DWORD)(dwAddress+i);
    	return 0;
    }
    ---------------------------------------------------------------------------------------------------------
    2. Make a function that calls your FindPatterns, and a global bool, and a global DWORD:
    Code:
    bool Finished = false;
    DWORD Status;
    
    
    void GetAddresses (void)
    {
    	Status = Pattern((DWORD)GetModuleHandleA("CShell.dll"), 0x97D000, (PBYTE)"\x71\x37\x50\x94\x71\x37", "xxxxxx");
    	if(Status)
    	{
    		Status -= 0xA;
    	}
    }
    ---------------------------------------------------------------------------------------------------------
    3. In your main hack thread, add this before anything:
    Code:
    if(Finished == false)
    {
    	GetAddresses();
    	Finished = true;
    	Sleep(300);
    }
    ---------------------------------------------------------------------------------------------------------
    4. Now you may use your DWORD Status as an address:
    Code:
    if(Status == 1)
    {
    	/*
    	Do whatever you want to do. When (Status == 1), It means you are ingame. You can use this method for ANY FindPatterns to get addresses.
    	*/
    }
    Note: The signature scan in tutorial 1 is the sig for the Gamestatus address. It has been used as an example. This method may be used for any other signature scans. Credits to me, mmbob and crash.



    Tutorial 2: How to make signature scans


    Watch the video in 1080p HD Fullscreen!
    Last edited by J; 09-07-2010 at 06:22 AM.
    Keep me motivated for my hack development!

  2. The Following 10 Users Say Thank You to J For This Useful Post:

    9flipkonijn9 (10-12-2010),Ali (09-09-2010),CodeDemon (09-06-2010),GodHack2 (09-06-2010),HaX4LiFe! (09-07-2010),Hello-World (10-07-2012),IanIsRich (09-09-2010),mastermods (09-07-2010),o-o (09-06-2010),Yepikiyay (09-09-2010)

  3. #2
    CodeDemon's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    vagina
    Posts
    1,070
    Reputation
    50
    Thanks
    940
    My Mood
    Fine
    Nice tut blood! /

  4. #3
    speedforyou's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    735
    Reputation
    -59
    Thanks
    108
    My Mood
    Happy
    nice tut you rock

    steel o-o's sig =
    = Done , = Not Done

    Leecher 0 =
    Newbie 25 =
    Member 50 =
    Advanced Member 100 =
    H4X0R Member 150 =
    Dual-Keyboard Member 250 =
    Expert Member 500 =
    's Trainer 750 =
    MPGH Expert 1000 =
    Synthetic Hacker 1250 =
    Blackhat Hacker 1500 =
    Whitehat Hacker 2000 =
    's Guardian 2500 =
    Upcoming MPGHiean 3000 =
    MPGH Addict 3500 =
    MPGHiean 4000 =
    MPGH Knight 4500 =
    MPGH Lord 5000 =
    MPGH Champion 5500 =
    MPGH King 6000 =
    MPGH Legend 6500 =
    MPGH God 7000 =
    MPGH God II 7500 =
    MPGH God III 8000 =
    MPGH God IV 8500 =
    MPGH God V 9000 =
    Arun's Slave 9500 =
    Dave's Slave 10000 =

  5. #4
    DeadLinez's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    https://mpgh.net Sexy Points: 989,576,420
    Posts
    465
    Reputation
    11
    Thanks
    500
    My Mood
    Psychedelic
    lol my video is better..

  6. #5
    ppl2pass's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    804
    Reputation
    5
    Thanks
    111
    My Mood
    Amused
    Your game status sig scan is wrong wrong wrong..

  7. #6
    Carlo Cn's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    11
    Reputation
    10
    Thanks
    0
    Nice. Tut.

  8. #7
    Mr.Magicman's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Sitting in my cave full of thoughts learning Asembly
    Posts
    2,102
    Reputation
    16
    Thanks
    649
    My Mood
    Cold
    No credz for the person that found??? (not me) you disapoint me man..

  9. #8
    J's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    East Coast
    Posts
    2,164
    Reputation
    452
    Thanks
    5,900
    My Mood
    In Love
    Quote Originally Posted by ppl2pass View Post
    Your game status sig scan is wrong wrong wrong..
    You sir are wrong wrong wrong...

    It's not wrong lmao.
    Keep me motivated for my hack development!

  10. The Following User Says Thank You to J For This Useful Post:

    Yepikiyay (09-24-2010)

  11. #9
    inliner's Avatar
    Join Date
    Jun 2008
    Gender
    male
    Location
    d
    Posts
    64
    Reputation
    10
    Thanks
    11
    where to get the plugin?

  12. #10
    J's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    East Coast
    Posts
    2,164
    Reputation
    452
    Thanks
    5,900
    My Mood
    In Love
    Quote Originally Posted by inliner View Post
    where to get the plugin?
    Holy shit, i forgot the plugin.

    Lemme upload it...

    what a fail D:
    Keep me motivated for my hack development!

  13. The Following User Says Thank You to J For This Useful Post:

    inliner (09-07-2010)

  14. #11
    EpicTazz's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Between you're legs.
    Posts
    315
    Reputation
    33
    Thanks
    40
    My Mood
    Angelic
    Even bigger fail..

    As MagicMan said, no credits?..
    Practise Makes Perfect. But no one is perfect. So why practise?

  15. #12
    UGodly's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    https://www.mpgh.net/forum/members/645501-ugodly.html
    Posts
    1,234
    Reputation
    18
    Thanks
    160
    My Mood
    Yeehaw
    thanks a lot
    did not know that...
    very nice tut

  16. #13
    coogle007's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Posts
    267
    Reputation
    18
    Thanks
    297
    My Mood
    Aggressive
    Thx 4 sharing man

  17. #14
    Amatowarrior's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    629
    Reputation
    14
    Thanks
    102
    My Mood
    Inspired
    Nice one Blood!
    Tools UNDETECTED - PATCHED [I will only have recent versions up!]
    Tapper V1.15: https://www.mpgh.net/forum/164-combat...r-v1-15-a.html
    Amato Inject V1.15: https://www.mpgh.net/forum/292-combat...t-v1-15-a.html

    Mods
    L96A1 - Arctic Wolf
    Super M416 CQB
    Super M16A3
    MW2 M92FS (M9)
    Starcraft 2 L96A1

    PVT VIP
    Aimbot: 65% (Have full source code)
    OPK: 100% (Uses Enemy Class)
    Telekill: 100% (Uses Enemy Class)
    Ghost Mode: 80% (In Semi-Stages)
    Super Bullets: 100% (Thanks Deadlinez/hahaz!)
    Menu Sprite: 100% (Thanks whit!)



  18. #15
    Yepikiyay's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    320
    Reputation
    10
    Thanks
    37
    My Mood
    Drunk
    ncie work blood

    I Hate You
    Current Status: Online Playing MineCraft

Page 1 of 2 12 LastLast

Similar Threads

  1. Auto-Updating Addresses
    By OneWhoSighs in forum Game Hacking Tutorials
    Replies: 4
    Last Post: 04-29-2013, 06:10 AM
  2. [Release] CAFlames Update Addresses From last Patch
    By CAFlames in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 50
    Last Post: 05-02-2011, 08:57 PM
  3. [Tutorial] How to auto-update addresses even after patches
    By HaxOrDie in forum Combat Arms EU Hack Coding/Source Code
    Replies: 3
    Last Post: 01-15-2011, 01:55 AM
  4. [Tutorial]How to fix MPGH pub hack after patch
    By Andyklk2009 in forum Combat Arms Hacks & Cheats
    Replies: 17
    Last Post: 10-17-2008, 01:49 PM
  5. [Tutorial] How to find ESP address.
    By wr194t in forum WarRock - International Hacks
    Replies: 5
    Last Post: 12-20-2007, 03:42 PM