Skip to content

Commit

Permalink
fixup! Removed VirusTotal step
Browse files Browse the repository at this point in the history
  • Loading branch information
MiranDMC committed Jun 10, 2024
1 parent 7a39b5a commit 8729074
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/CCustomOpcodeSystem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -963,7 +963,7 @@ namespace CLEO
DWORD key;
*thread >> key;

SHORT(__stdcall * GTA_GetKeyState)(int nVirtKey) = memory_pointer(0x0081E64C); // use ingame function as GetKeyState might look like keyloger to some AV software
SHORT(__stdcall * GTA_GetKeyState)(int nVirtKey) = memory_pointer(0x0081E64C); // use ingame function as GetKeyState might look like keylogger to some AV software
bool isDown = (GTA_GetKeyState(key) & 0x8000) != 0;

SetScriptCondResult(thread, isDown);
Expand Down

0 comments on commit 8729074

Please sign in to comment.