View Single Post
  #9  
Old 05-08-2004, 07:51 PM
AK1122
Sarnak
 
Join Date: Apr 2003
Posts: 41
Default

try this for character still not creating :

in world/client.cpp : around line 384
Code:
else if (app->size != sizeof(CharCreate_Struct))
			{
				cout << "Wrong size on OP_CharacterCreate. Got: " << app->size << ", Expected: " << sizeof(CharCreate_Struct) << endl;
				DumpPacket(app);
				break;
			}
to

Code:
else if (app->size != sizeof(CharCreate_Struct))
			{
				cout << "Wrong size on OP_CharacterCreate. Got: " << app->size << ", Expected: " << sizeof(CharCreate_Struct) << endl;
				DumpPacket(app);
				//break;
			}
Also, I can't see why it only lets you log in eqemu/eqemu :S

checked to make sure ur DB matches ur miniloginaccounts.ini EXACTLY? sometimes i make a mistake there :P

hmm good luck with that
__________________
"When I take action I'm not going to fire a $2 million missile at a $10 empty tent and hit a camel in the butt."--

President of the United States,

George W. Bush.

(btw yes, im an Arab)
Reply With Quote