What did I need to put at interface.h and interface.cpp
I already put my source code at main.cpp.
Can someone tell me what need to put at interface.h and interface.cpp?
I would like to make some hack,this is my first try to make hack
Hope you all can teach me
void Start()
{
while (1)
{
if (GetAsyncKeyState(VK_F7) & 1)
{
*(BYTE*)0x0054642B = 0x00;
*(BYTE*)0x0054642C = 0x74;
}
if (GetAsyncKeyState(VK_F8) & 1)
{
*(BYTE*)0x0054642B = 0xFF;
*(BYTE*)0x0054642C = 0x75;
}
}
}
im using this code and always getting game hack has been detected im using undtected injector because Another DLL can be inject but my dll is detected by blackshot , so can you help me ?
- - - Updated - - -
Originally Posted by syabilhamimi
Oh,then I just need leave the interface.cpp and interface.h?
What code need to put at interface.cpp?
Thanks for that code
As @Akem125zr say only need .cpp file in source file
Originally Posted by Akem125zr
Make Empty Project Then Just Add .cpp
Oh!
Thanks you for that information
I use the COD3RIN tutorial,so they i really confuse about interface.h and interface.cpp
Can I ask some question?
How to put hotkey at my source?
Originally Posted by syabilhamimi
Oh!
Thanks you for that information
I use the COD3RIN tutorial,so they i really confuse about interface.h and interface.cpp
Can I ask some question?
How to put hotkey at my source?
like this
void Start ()
{
while (1)
{
if ((GetAsyncKeyState(VK_F5)))
}
Originally Posted by syabilhamimi
Oh!
Thanks you for that information
I use the COD3RIN tutorial,so they i really confuse about interface.h and interface.cpp
Can I ask some question?
How to put hotkey at my source?
if (GetAsyncKeyState(VK_INSERT)&1) < ---- Just Change INSERT To Ur Hotkey . U Can Read HERE For Virtual Key .
Been over 2 days since last update/bump after answers, assuming solved.