[+] GetEngineVersion

This commit is contained in:
TimmieDevelops
2026-02-01 21:20:51 -06:00
parent 3b4c3bfd23
commit e444c6079e
5 changed files with 36 additions and 38 deletions
+7 -1
View File
@@ -1,10 +1,16 @@
#include "PatternScanner.h"
PatternScanner* PatternScanner::Get()
{
static PatternScanner* Instance = new PatternScanner();
return Instance;
}
uintptr_t PatternScanner::FindGetEngineVersion()
{
auto Results = Memcury::Scanner::FindPattern("40 53 48 83 EC ?? 48 8B D9 E8 ?? ?? ?? ?? 48 8B C8 41 B8"); // Chapter 1 - Chapter 2
if (!Results.IsValid())
return -1;
return 0;
return Results.Get();
}