C++:
void Misc::Buybot() noexcept
{
if (&config->ragebotExtra.BuybotEnabled) {
static std::string buy;
if (&config->ragebotExtra.mainwep == 0) {
buy = "buy g3sg1;";
}
if (&config->ragebotExtra.mainwep == 1) {
buy = "buy awp;";
}
interfaces->engine->clientCmdUnrestricted(buy.c_str());
}
}
C++:
int mainwep{ 0 };
int secwep{ 0 };