Page 1 of 2 12 LastLast
Results 1 to 15 of 19
  1. #1
    [.]'s Avatar
    Join Date
    Jun 2013
    Gender
    male
    Location
    Porto,Portugal
    Posts
    5
    Reputation
    15
    Thanks
    7

    Post Device Game | EndScene

    Code:
    MOV EAX,DWORD PTR DS:[147FB0C] <- Device Game
    MOV ECX,DWORD PTR DS:[EAX] 
    MOV EDX,DWORD PTR DS:[ECX+A8]  <- Possible Endscene
    PUSH EAX <- Push Device
    CALL EDX <- Call EndScene
    Get addy update
    Code:
    Pattern Scan:
    #define P_Device "\xA1\x00\x00\x00\x00\x8B\x08\x8B\x91\x00\x00\x00\x00\x50\xFF\xD2\x8D\x8D\x00\x00\x00\x00"
    #define M_Device "x????xxxx????xxxxx????'
    
    DWORD FindDevice = FindPatter((DWORD)GetModuleHandleA("AVA.exe"),0xFFFFF,(PBYTE)P_Device,(PCHAR)M_Device );
    DWORD FindDevice = *(DWORD*)(FindDevice + 0x1);
    Crédits:
    Me
    ForeverRed, Posted AVA dump .

  2. The Following 4 Users Say Thank You to [.] For This Useful Post:

    asqapro (07-22-2014),Poxer (08-11-2014),SayHaiLo (07-24-2014),sugulino (08-06-2014)

  3. #2
    SayHaiLo's Avatar
    Join Date
    Jul 2014
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    1,069
    i tank you bro. great find very helpful i find it 3 years ago now you reminder me thx

    Last edited by SayHaiLo; 07-24-2014 at 12:55 AM. Reason: Image

  4. #3
    WhiteHat PH's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Location
    Some Where I Belong
    Posts
    1,350
    Reputation
    25
    Thanks
    3,100
    My Mood
    Aggressive
    Good Job!






    When Im gone dont forget me cause I will come back someday.



    Youtube Channel


     


  5. #4
    leditirane's Avatar
    Join Date
    Oct 2013
    Gender
    male
    Posts
    257
    Reputation
    10
    Thanks
    29
    My Mood
    Amazed
    good work bro

  6. #5
    SayHaiLo's Avatar
    Join Date
    Jul 2014
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    1,069
    Nice job!!

  7. #6
    imhomeless:)'s Avatar
    Join Date
    Jul 2014
    Gender
    male
    Location
    usa
    Posts
    135
    Reputation
    10
    Thanks
    11
    how do you use this sorry im new

  8. #7
    asqapro's Avatar
    Join Date
    May 2012
    Gender
    male
    Posts
    228
    Reputation
    18
    Thanks
    1,727
    My Mood
    Tired
    Quote Originally Posted by imhomeless:) View Post
    how do you use this sorry im new
    You can use the addresses he provided to make a hack for the game and the pattern scan to find the addresses again after the game updates. This won't be of use to anyone who doesn't know C++ and assembly.
    AVA IGN: NutVBanned

    Current releases:

  9. #8
    Threadstarter
    New Member
    [.]'s Avatar
    Join Date
    Jun 2013
    Gender
    male
    Location
    Porto,Portugal
    Posts
    5
    Reputation
    15
    Thanks
    7
    Quote Originally Posted by imhomeless:) View Post
    how do you use this sorry im new

    Code:
    DWORD RetnHook;
    #define DeviceGame 0x147FB0C
    
    __declspec(naked) void __stdcall MidFunctionHook()
    {
    	static LPDIRECT3DDEVICE9 pDevice;
    	pDevice = *(LPDIRECT3DDEVICE9*)*(DWORD*)DeviceGame ;	
    
    	if (pDevice)
    	{
               //yours function here
    		
    	}
    	__asm 	JMP [RetnHook];
    }
    
    You need hooked the Game to work this midfunction.

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

    asqapro (08-08-2014)

  11. #9
    Poxer's Avatar
    Join Date
    Jun 2013
    Gender
    male
    Posts
    4,022
    Reputation
    243
    Thanks
    623
    Great work !

  12. #10
    R3DDOT's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Location
    C://Windows/system32
    Posts
    347
    Reputation
    38
    Thanks
    2,366
    My Mood
    Cheerful
    Quote Originally Posted by [.] View Post

    Code:
    DWORD RetnHook;
    #define DeviceGame 0x147FB0C
    
    __declspec(naked) void __stdcall MidFunctionHook()
    {
    	static LPDIRECT3DDEVICE9 pDevice;
    	pDevice = *(LPDIRECT3DDEVICE9*)*(DWORD*)DeviceGame ;	
    
    	if (pDevice)
    	{
               //yours function here
    		
    	}
    	__asm 	JMP [RetnHook];
    }
    
    You need hooked the Game to work this midfunction.
    You forgot to mention you need the D3D9 SDK in order to use this.

  13. #11
    daviddidi's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    1,185
    Reputation
    13
    Thanks
    1,974
    My Mood
    Doh
    Thank for sharing

  14. #12
    COD3RIN's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Posts
    5,309
    Reputation
    468
    Thanks
    28,779
    My Mood
    Angelic
    look outdated
    ᚛C☢dℝin3᚜
    Love you.
    ~Kenshit13
    Quote Originally Posted by cheaterman26 View Post
    COD3RIN PUT A BACKDOOR ON HIS OWN CHEAT HE HACK MY COMPUTER AND MY STEAM, DON'T TRUST THIS GUYS !



  15. #13
    Threadstarter
    New Member
    [.]'s Avatar
    Join Date
    Jun 2013
    Gender
    male
    Location
    Porto,Portugal
    Posts
    5
    Reputation
    15
    Thanks
    7
    Quote Originally Posted by COD3RIN View Post
    look outdated
    ..Why?

  16. #14
    maxrio's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Posts
    45
    Reputation
    10
    Thanks
    1
    My Mood
    Fine
    the latest version can work ?

  17. #15
    I'm not lazy, I just really enjoy doing nothing.
    Donator
    _PuRe.LucK*'s Avatar
    Join Date
    Apr 2013
    Gender
    male
    Location
    idk bruh.
    Posts
    521
    Reputation
    71
    Thanks
    5,650
    My Mood
    Bored
    nice work but i think memory modifications are detected

Page 1 of 2 12 LastLast

Similar Threads

  1. [Help Request] CF Crashs If I Draw my Menu after a Game / Cant draw Text in Endscene
    By Aldimann in forum Crossfire Coding Help & Discussion
    Replies: 5
    Last Post: 05-24-2013, 02:07 PM
  2. Help For Move Games Between Storage Devices
    By eroleren in forum XBOX Help
    Replies: 0
    Last Post: 12-03-2012, 08:38 AM
  3. games that suck
    By gothgod in forum General Game Hacking
    Replies: 50
    Last Post: 07-09-2006, 06:41 PM
  4. frag/game music video's
    By kyo in forum General
    Replies: 12
    Last Post: 06-20-2006, 08:55 AM
  5. What type of games
    By djraziel127 in forum General Game Hacking
    Replies: 11
    Last Post: 12-30-2005, 03:22 PM