I am trying to write a simple aob scan LUA. The issue is that the anticheat of the game detects and crashes the game when CE tries to save scan result in TEMP directory. I have confirmed this by bypassing the crash by changing Settings > Scan Settings > Settings a different folder for scanfiles. In this case the game does not crash.
Now I want to write a LUA trainer for my app, which is exported as EXE trainer.
Code: Select all
local ms = createMemScan()
ms.OnlyOneResult = true
ms.ScanresultFolder = "D:\\TMP\\"
.......
Is there any way to change the scan result folder through lua , i want to bundle my trainer as exe so changing it in CE settings isn't an option.