Can somebody tell me how can i make message in C++ (when hack is injected it shows you message box: Made by Matrix. Visit www.mpgh.net!)
I'm asking for WarRock, thanks in advance!
MessageBoxA(0, "Text", "Title", MB_OK);
Thanks, i will try if it works ..
ya hell demon is right
you do this
in your dll main where it says something like this
Code:
CreateThread(Null,bla bla, bal ect);
put this above it
Code:
MeassageBoxA(0,"type ur massge here","Success Hack Injected",0);
hope it helped
Posts 1–8 of 8 · Page 1 of 1
Post a Reply
Tags for this Thread
None
Originally Posted by sam22
ya hell demon is right
you do this
in your dll main where it says something like this
Code:
CreateThread(Null,bla bla, bal ect);
put this above it
Code:
MeassageBoxA(0,"type ur massge here","Success Hack Injected",0);
hope it helped
You appeared to be soooo much help.
You don't need the create thread, if it's in the dll you inject it will execute. If you actually want something running within the program, then use createthread
~lilneo
Originally Posted by lilneo
You appeared to be soooo much help.
You don't need the create thread, if it's in the dll you inject it will execute. If you actually want something running within the program, then use createthread
~lilneo
i never said make a new thread i said above that put the MessageBoxA
naver mind dude I only wanted to help him.
who cares?
Originally Posted by lilneo
You appeared to be soooo much help.
You don't need the create thread, if it's in the dll you inject it will execute. If you actually want something running within the program, then use createthread
~lilneo
You'll actually want to use CreateThread, since having a while(1) loop in your DllMain will cause subsequent DLLs to not load as DllMain never returns then.