Quote:
Originally Posted by Damnatio
Sollte er wofür brauchen? xD
|
Um das Triggerdelay zu überspringen, falls man schonmal geschossen hat? Was weiß ich.
@s1Nkable: füg die .exe aus meinem Anhang vielleicht in den Ursprungsdownload hinzu, Name ist selbsterklärend denke ich.
Whoever wants to always be up to date, run the .exe I attached before the triggerbot. It updates the cs:go offsets but doesn't edit any other settings.
Source:
Code:
std::string offStr = PatternFinder->GetTiggaOffsets();
std::ifstream cfgF("config.ini");
std::stringstream buffer;
buffer << cfgF.rdbuf();
std::string fileContent = buffer.str();
std::string prefix = fileContent.substr(0, fileContent.find("CSGO.L"));
size_t start = fileContent.find("[OFFSETS]\n");
size_t end = fileContent.find("CSS.L");
fileContent.replace(start + 1, end - start - 1, offStr);
std::ofstream("config.ini") << prefix << fileContent;