PyObject* chrGetPart(PyObject* poSelf, PyObject* poArgs)
{
int iPartIndex;
if (!PyTuple_GetInteger(poArgs, 0, &iPartIndex))
return Py_BuildException();
CInstanceBase* pInstance = CPythonCharacterManager::Instance().GetSelectedInstancePtr();
if (!pInstance)
return...