вот дана функція в sdk
int Studio_BoneIndexByName( const CStudioHdr *pStudioHdr, const char *pName )
{
// binary search for the bone matching pName
int start = 0, end = pStudioHdr->numbones()-1;
const byte *pBoneTable = pStudioHdr->GetBoneTableSortedByName();
mstudiobone_t...