-
Автор темы
- #1
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Код:
class CGameRules
{
public:
bool IsValveDS() { return true; }
};
CGameRules* pGameRules;
class CEvent
{
std::string strName;
public:
std::string GetName() { return strName; }
};
CEvent* pEvent;
bool bAutoCrash = true;
if ((pGameRules->IsValveDS() && bAutoCrash && strcmp(pEvent->GetName().c_str(), "cs_win_panel_match") == 0))
{
//removed for antipaste
}