Sir can you teach me how to make a dll that shows an image when injected ?
is that possible ?
Originally Posted by blackgaming
Sir can you teach me how to make a dll that shows an image when injected ?
is that possible ?
You said Sir so you must be talking to me.
To answer your question it's certainly possible. However it would help if I knew where you planned to show the image. In game or outside?
Posts 1–7 of 7 · Page 1 of 1
Post a Reply
Tags for this Thread
None
Ingame and Also outside
Originally Posted by blackgaming
Ingame and Also outside
okay well for ingame you'll need a pointer to the IDirect3DDevice9, which is basically used to draw and render everything, most people here just call it pDevice for short.
Then there's a number of ways to display an image. One is Loading it from a file and another is loading it from a resource. I think there's a function called D3DXCreateTextureFromFile
As for outside, hmmm... idk you might need to load the pic up in a window, but that may not be what you want. I know I once tried making and animated splash screen using COM. You'll have to search around for what you want. I'm sure there's an easier way such as showing a window and removing the buttons or even using DirectX in Windowed mode.
Code ... heres my example to make my question more clearer:
how to make a dll that shows an message box when injected ??
i want to replace the message box into a inputbox or anything else that can show up the logo of this site..
Well, to make a message box is easier. This doesnt require DirectX though so I dont know if that is what you want.
Code:
MessageBoxA(0, "Coded By your name", "title of message", 0);
Use this
Also you use sprites to show image text in side game