HERAKLES Otomatik Avlı kalıcı sunucu. 19 Haziran'da açılıyor. Atius & Wizard güvencesiyle hemen kayıt ol, ön kayıt ödülleri aktif. HEMEN TIKLA!
#ifdef EXTREME_FPS_BOOST
PyObject* systemSetExtremeFpsBoost(PyObject* poSelf, PyObject* poArgs)
{
BYTE bVal;
if (!PyTuple_GetByte(poArgs, 0, &bVal)) { return Py_BuildException(); }
CPythonSystem::Instance().SetExtremeFpsBoost(bVal);
return Py_BuildNone();
}
PyObject* systemGetExtremeFpsBoost(PyObject* poSelf, PyObject* poArgs)
{
return Py_BuildValue("i", CPythonSystem::Instance().GetExtremeFpsBoost());
}
#endif
