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