I posted this on RunUO as well, but thought I would post here since it seems to effect both...
It seems that limiting the number of characters is not working like it
used to. I made the usual correction to my Account.cs to limit the
characters per account to 1. This used to remove the NEW button from the
gump when players were at the character selection screen but now they
can click the NEW button and go through the steps to create a new
character. Once they pick a starting location, their client freezes and
the server displays a console line "Character Creation Failed, account
full"
The only change made was in Account.cs here:
I'm using client version 7.0.31.0 and have tried it with a clean install. I've also tried it using an older client version. It doesn't appear to be my client as I can log into a shard called Whispering Pines and it is properly limiting me to a single character.
Thanks for any help.
It seems that limiting the number of characters is not working like it
used to. I made the usual correction to my Account.cs to limit the
characters per account to 1. This used to remove the NEW button from the
gump when players were at the character selection screen but now they
can click the NEW button and go through the steps to create a new
character. Once they pick a starting location, their client freezes and
the server displays a console line "Character Creation Failed, account
full"
The only change made was in Account.cs here:
Code:
public int Limit
{
//get { return ( Core.SA ? 7 : Core.AOS ? 6 : 5 ); }
get { return 1; }
}
I'm using client version 7.0.31.0 and have tried it with a clean install. I've also tried it using an older client version. It doesn't appear to be my client as I can log into a shard called Whispering Pines and it is properly limiting me to a single character.
Thanks for any help.