Hey guys.
Just want to ask you if a simple auto-pistol will be VAC-detected by any chance.
The only thing I do is spam the Left Button if a key is pressed. (I dont read or write memory)
I wrote it in c++ and used mouse_event to emulate the button press.
Code:
#include <iostream>
#include <windows.h>
using namespace std;
bool ap = false;
int main()
{
while( true ){
//const int KEYEVENT_KEYUP = 0x02;
if( GetKeyState ( 0x46 ) & 0x8000 )
{
ap = true;
}
else
ap = false;
if( ap ){
{
mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0);
mouse_event(MOUSEEVENTF_LEFTUP,0,0,0,0);
}
cout << "Shoot";
}
Sleep( 20 );
}
}
And in general, if I write a recoil control which will simply emulate mouse movements without reading or writing memory, will it be detected?
I am new to both coding and hacking, so please dont be too harsh lol.
Thanks!