Not sure if threading is working
I recently began adding threading to my cheat to improve the performance of it in general.
this is what I have for the code
Code:
thread Crosshair_thread = thread(ShowCrosshair);
thread GLOW_thread = thread(GLOW);
thread RADAR_thread = thread(StartRadar);
thread SLOWAIM_thread = thread(SlowAimFunction);
thread BHOP_thread = thread(RunBhop);
thread Triggerbot_thread = thread(Triggerbot);
thread fov_thread = thread(ChangeFOV);
thread AutoShoot_thread = thread(AutoShoot);
/* Start threads */
AutoShoot_thread.join();
fov_thread.join();
Crosshair_thread.join();
GLOW_thread.join();
RADAR_thread.join();
SLOWAIM_thread.join();
BHOP_thread.join();
Triggerbot_thread.join();
the problem is it doesnt seem to be working, can someone explain why and/or how to fix it?