RunUO Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Making server auto account creation

So in my AccountHandler i have it set to 2 accounts per ip address and it says

Code:
public class AccountHandler
    {
        private static int MaxAccountsPerIP = 2;
        private static bool AutoAccountCreation = true;
        private static bool RestrictDeletion = !TestCenter.Enabled;
        private static TimeSpan DeleteDelay = TimeSpan.FromDays( 7.0 );
 
        public static PasswordProtection ProtectPasswords = PasswordProtection.NewCrypt;

but for some reason u cant create an account at login screen, one has to be made for you and i dont understand.
 
Looks the same as mine.
does it do that for all accounts from different Ips or just when you try to create a new account? the 2 account limit will affect you as well as anyone else. So if you have 2 accounts created already from your IP you would not be able to create anymore either.
 
Top