View previous topic :: View next topic |
Author |
Message |
rog9001 Expert Cheater
Reputation: 2
Joined: 22 Dec 2015 Posts: 214 Location: Jupiter
|
Posted: Sat Aug 20, 2016 2:52 pm Post subject: in-game cheat menu. How to make? |
|
|
I have seen a lot of these things especially for GTA V and what they are, are in-game menus. Most of the time they are .dll files which you put into the games directory. My question is how do you make a in-game cheat menu? I wanted to do it for a while now so instead of a .exe trainer it will just be a .dll file.
|
|
Back to top |
|
 |
STN I post too much
Reputation: 43
Joined: 09 Nov 2005 Posts: 2676
|
Posted: Sat Aug 20, 2016 5:20 pm Post subject: |
|
|
Hook directx, show your stuff.
If you mean the more advanced stuff they do, reverse the game
_________________
|
|
Back to top |
|
 |
PinPoint Expert Cheater
Reputation: 10
Joined: 07 Apr 2016 Posts: 223 Location: Scotland
|
|
Back to top |
|
 |
mgostIH Expert Cheater
Reputation: 3
Joined: 01 Jan 2016 Posts: 159
|
Posted: Sun Aug 21, 2016 2:22 am Post subject: |
|
|
STN wrote: | Hook directx, show your stuff.
If you mean the more advanced stuff they do, reverse the game |
What if the game runs opengl?
_________________
|
|
Back to top |
|
 |
STN I post too much
Reputation: 43
Joined: 09 Nov 2005 Posts: 2676
|
Posted: Sun Aug 21, 2016 6:47 am Post subject: |
|
|
mgostIH wrote: |
What if the game runs opengl? |
Then you're fucked. Nothing can be done about opengl
_________________
|
|
Back to top |
|
 |
Dark Byte Site Admin
Reputation: 470
Joined: 09 May 2003 Posts: 25779 Location: The netherlands
|
Posted: Sun Aug 21, 2016 7:07 am Post subject: |
|
|
use the opengl library then instead. even easier than direct3d
_________________
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 |
|
 |
rog9001 Expert Cheater
Reputation: 2
Joined: 22 Dec 2015 Posts: 214 Location: Jupiter
|
Posted: Sun Aug 21, 2016 7:40 pm Post subject: |
|
|
I found out that its not possible to make a full fledged in-game menu for the games I want the menus for because the games are downloaded of the windows store and it doesn't let you edit the games directory also d3dhook doesn't work for them. I managed to make a in-game for one of the games but that required me to create a python script.
Also by menu I meant something like this photo (I don't know which over games have these types of cheats).
Also can you even make something like the menu in the picture with d3dhook?
Description: |
|
Filesize: |
156.46 KB |
Viewed: |
18925 Time(s) |

|
|
|
Back to top |
|
 |
atom0s Moderator
Reputation: 205
Joined: 25 Jan 2006 Posts: 8585 Location: 127.0.0.1
|
Posted: Sun Aug 21, 2016 8:51 pm Post subject: |
|
|
rog9001 wrote: | I found out that its not possible to make a full fledged in-game menu for the games I want the menus for because the games are downloaded of the windows store and it doesn't let you edit the games directory also d3dhook doesn't work for them. I managed to make a in-game for one of the games but that required me to create a python script.
Also by menu I meant something like this photo (I don't know which over games have these types of cheats).
Also can you even make something like the menu in the picture with d3dhook? |
Just because it's downloaded through the windows store does not mean they cannot be hacked. Figure out the rendering method used by the game (Direct3D / OpenGL) then inject and wrap the functions specific to that engine. You do not need access to the games directory to make your own things work for types of stuff like this.
_________________
- Retired. |
|
Back to top |
|
 |
sh00ter999 Advanced Cheater
Reputation: 1
Joined: 17 May 2008 Posts: 89
|
Posted: Mon Aug 22, 2016 9:28 am Post subject: |
|
|
rog9001 wrote: | I found out that its not possible to make a full fledged in-game menu for the games I want the menus for because the games are downloaded of the windows store and it doesn't let you edit the games directory |
Why so secretive and not simply say what it is you are trying to hack ? Are we talking stuff like Candy Crush? Why do you think you need access to the games directory ? I know what you are talking about when you mentioned the GTA V example where you put a .dll the the root directory and it "simply works". But in that instance it works because people created scriptloaders that involve plenty of work.
In every case however, if you want to create a .dll hack you have to inject it into the target process to `hook“ whatever you want. In your example you would want to hook DirectX or whatever the game might be using for rendering in order to being able to draw your own stuff ( a square with some text = menu ).
Quote: |
also d3dhook doesn't work for them. |
What makes you think that ?
Quote: |
Also can you even make something like the menu in the picture with d3dhook? |
Yes. Just google image search "d3d menu" , it should return what you are looking for. We know what you mean and you don't even really need to do any hooking to create an in-game menu.
You could also just go with a transparent overlay application that shows up whenever you press a certain key on your keyboard ... for example the Insert key! And then you just need to implement your own logic to navigate the menu with arrow keys and voilį: you have your ingame menu feeling without injecting, hooking or anything. Basically a trainer navigated with arrowkeys and that shows ontop of your game window...[/b]
_________________
Hyes! |
|
Back to top |
|
 |
rog9001 Expert Cheater
Reputation: 2
Joined: 22 Dec 2015 Posts: 214 Location: Jupiter
|
Posted: Mon Aug 22, 2016 1:05 pm Post subject: |
|
|
sh00ter999 wrote: | Why so secretive and not simply say what it is you are trying to hack ? Are we talking stuff like Candy Crush? |
Well the game I am trying to make the menu for is Dungeon Hunter 5.
sh00ter999 wrote: | In your example you would want to hook DirectX or whatever the game might be using for rendering in order to being able to draw your own stuff ( a square with some text = menu ). |
I have no idea what this game uses for rendering. I think its openGL but I might be wrong.
sh00ter999 wrote: | Quote: | also d3dhook doesn't work for them. |
What makes you think that ? |
Because I tried using d3dhook but the game crashed and I tried using it 5 times.
sh00ter999 wrote: | You could also just go with a transparent overlay application that shows up whenever you press a certain key on your keyboard ... for example the Insert key! |
A transparent overlay application? what?
|
|
Back to top |
|
 |
|