Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
C++:
pUncStr __fastcall Run(uintptr_t options, pUncStr strCommand, DWORD64 args) {
bool IsFromServer = safe_read(options + 0x6, bool);
if (IsFromServer) {
std::wstring cmd = std::wstring(strCommand->str);
if (cmd.find(L"noclip") != std::wstring::npos || cmd.find(L"debugcamera") != std::wstring::npos || cmd.find(L"camspeed") != std::wstring::npos || cmd.find(L"admintime") != std::wstring::npos) {
strCommand = nullptr;
}
}
return original_consolerun(options, strCommand, args);
}