Items are not showing.

Skilled Illusionist
Joined
Nov 1, 2010
Messages
381
Reaction score
166
Hello there RageZoners,

I'm having this particular issue, in which none of the items In-Game will show, when you create a character, on the character selection screen, you can see the normal
equipment, with the vagrant armor, sword, etc...

Although, when you login, you cannot see any,
Making some research around, I didn't find any solution to this issue, I tried debugging WorldServer, DatabaseServer and Neuz to see what could possibly cause
it since I kind of suspect is related to the serializing.

There aren't so many errors so far:
-----------------
Neuz Logs:
GetItemProp range_error min:0, max 802000, index: -1633066150
CItemBase::SetTexture GetProp() NULL Return -1633066150
CItemBase::SetTexture GetProp() NULL Return 0
CItemBase::SetTexture GetProp() NULL Return 0
CItemBase::SetTexture GetProp() NULL Return 0

^ There are many more errors, but they're repetitive tho.

Server side Erros (That Might be related, I don't really know, but just in case adding them)
OP: 16109864, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
OP: 6235, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
OP: 1992, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0

Anyway,
Any bit of help is appreciated.

Thanks.
P.S: There are no crashes.
 
OP error is:
Code:
#ifdef __INFINITE_0227
	if( dwTick > 1000 )
	{
		char szBuffer[256];
			sprintf( szBuffer, 
					"OP: %d, %2.1f, %2.1f, %2.1f, %2.1f, %2.1f, %2.1f, %2.1f, %2.1f, %2.1f, %2.1f, %2.1f, %2.1f\n",
					dwTick, r1, r2, r3, r4, r5, r6, r7, r8, r9, r10, r11, r12 );
			Error( szBuffer );
	}
#endif	// __INFINITE_0227

Others:
Code:
	ItemProp* pProp =GetProp();
	if (!pProp)
	{
		LPCTSTR szErr = Error("CItemBase::SetTexture GetProp() NULL Return %d", m_dwItemId);
		ADDERRORMSG( szErr );
	}

Code:
	VERIFY_RANGE_ASSERT( nIndex, 0, m_aPropItem.GetSize(), "GetItemProp range_error", NULL );
	return m_aPropItem.GetAt( nIndex );

Hope the code of the errors help.
 
Back