View previous topic :: View next topic |
Author |
Message |
TheLoop How do I cheat?
Reputation: 0
Joined: 04 Sep 2013 Posts: 9
|
Posted: Mon Sep 30, 2013 8:00 am Post subject: Game graphics hiding |
|
|
Can anyone help me in hiding game's graphics like to make game play faster?
Upon opening ollydbg i got this address which loads game's graphics
0046C27F DB45 B4 FILD DWORD PTR SS:[EBP-4C]
It access data 1E633AF8
Is it possible to make it to not load 1E633AF8
please any help is appreciated.
Thanks!
|
|
Back to top |
|
 |
TsTg Master Cheater
Reputation: 5
Joined: 12 Dec 2012 Posts: 340 Location: Somewhere....
|
Posted: Mon Sep 30, 2013 11:40 am Post subject: |
|
|
where is 1E633AF8 stored in?, [EBP-4C] ?
if so, you can filter it out by adding a code cave:
0xCodeCaveStart:
push eax
mov eax,[EBP-4C]
cmp eax,1E633AF8
je 0xDontLoadMe
pop eax
FILD DWORD PTR SS:[EBP-4C]
jmp 0xOriginalCodeAfterTheFILDCommand
0xDontLoadMe:
pop eax
jmp 0xOriginalCodeAfterTheFILDCommand
___________________________
then at 0046C27F, do a JMP 0xCodeCaveStart
|
|
Back to top |
|
 |
TheLoop How do I cheat?
Reputation: 0
Joined: 04 Sep 2013 Posts: 9
|
Posted: Tue Oct 01, 2013 4:25 am Post subject: |
|
|
Thanks for the reply but i don't know how do this the data changes every time i reopen the game.
|
|
Back to top |
|
 |
TsTg Master Cheater
Reputation: 5
Joined: 12 Dec 2012 Posts: 340 Location: Somewhere....
|
Posted: Tue Oct 01, 2013 12:50 pm Post subject: |
|
|
if you mean that 1E633AF8 gets changed, you need to find a pointer for it, or if you can find something special related to it in the graphic loader routine.
|
|
Back to top |
|
 |
TheLoop How do I cheat?
Reputation: 0
Joined: 04 Sep 2013 Posts: 9
|
Posted: Sun Oct 13, 2013 9:47 am Post subject: |
|
|
Is there any other way to do it ?
|
|
Back to top |
|
 |
Dark Byte Site Admin
Reputation: 470
Joined: 09 May 2003 Posts: 25788 Location: The netherlands
|
Posted: Sun Oct 13, 2013 10:52 am Post subject: |
|
|
You might be able to use ce's d3d snapshot feature to locate the code that renders a specific 3d object
Then do a code injection and use the info from the stack to decide if you call the draw operation, or just return
_________________
Do not ask me about online cheats. I don't know any and wont help finding them.
Like my help? Join me on Patreon so i can keep helping |
|
Back to top |
|
 |
TheLoop How do I cheat?
Reputation: 0
Joined: 04 Sep 2013 Posts: 9
|
Posted: Wed Oct 16, 2013 3:55 am Post subject: |
|
|
Thanks for the reply Dark Byte.
Can you please give an example.
|
|
Back to top |
|
 |
TheLoop How do I cheat?
Reputation: 0
Joined: 04 Sep 2013 Posts: 9
|
Posted: Sun Oct 20, 2013 3:14 am Post subject: |
|
|
TsTg, can you please explain me how use code cave?
|
|
Back to top |
|
 |
|