BYTE ch = 0x90;
WriteProcessMemory(pHandle, (LPVOID)(0x6FF452), &ch, sizeof(ch), NULL);
if (std::filesystem::exists("aconf.txt"))
{
std::ifstream t("aconf.txt");
std::stringstream buffer;
buffer << t.rdbuf();
float num_float = std::stof(buffer.str());
WriteProcessMemory(pHandle, (LPVOID)(0xC3EFA4), &num_float, sizeof(num_float), NULL);
}