add: fly and tp to azazel

This commit is contained in:
Jadis0x
2024-05-29 21:43:06 +03:00
parent a5e92125ed
commit 7c151b664f
6 changed files with 51 additions and 15 deletions

View File

@@ -115,20 +115,11 @@ void Run()
}
while (true) {
if (GetAsyncKeyState(VK_END) & 0x8000 || should_unhook) {
if (GetAsyncKeyState(VK_END) & 0x8000 || should_unhook)
break;
}
if (settings::fullBright) {
Misc::FullBright();
}
if (settings::fly) {
//Misc::Fly(settings::fly_speed);
}
std::this_thread::sleep_for(std::chrono::milliseconds(500));
std::this_thread::sleep_for(std::chrono::milliseconds(1000));
}
CreateThread(0, 0, EjectThread, 0, 0, 0);
}