getSkinCount( const model[] ) { new skinCount; new f = fopen( model, "rb" ); if( f ) { const studioHeader_NumSkin = 196; fseek( f, studioHeader_NumSkin, SEEK_SET ); fread( f, skinCount, BLOCK_INT ); fclose( f ); } return skinCount; }