CModelObject::Render

08/06/2015 02:23 Tyki35#1
Hi,

When I log on to my server I have an error in my client, I look and I can not find why.
if anyone can help me it would be very nice :)


and it goes over many lines

Thanks :D
08/06/2015 04:16 Mognakor#2
Simply search the source?

You have input some new model that now causes an error.
08/09/2015 19:07 Tyki35#3
I search the source I look at the file but I modelObject.cpp what to look too saispas x) and how to set problem.
08/11/2015 19:46 raventh1984#4
Take an close look here is the code
Code:
if( nMaxBone > MAX_VS_BONE )	
				Error( "CModelObject::Render : overflow bone count - %d", nMaxBone );
You have an overflow so you will now have -31 Bones.

1st tip
(>) means Higher then
(<) means Lower then
(==) means equal to
(!=) means not equal to
(>=) Means Higher or Equal to
(<=) Means Lower or Equal to

So check what it's saying
if( nMaxBone > MAX_VS_BONE )

Hope you now know what you need to do ^^