remove:
newChar.BankBox.DropItem( new MailBox() );
and put it RIGHT after:
Code:
private static void EventSink_CharacterCreated( CharacterCreatedEventArgs args )
{
if ( !VerifyProfession( args.Profession ) )
args.Profession = 0;
Mobile newChar = CreateMobile( args.Account as Account );
if ( newChar == null )
{
Console.WriteLine( "Login: {0}: Character creation failed, account full", args.State );
return;
}
args.Mobile = newChar;
m_Mobile = newChar;