How would I go about changing the character login timer. The characters disappear already on time out due to another script I have. I am wondering how do I get it to where the players don't have to wait forever to login with another character
 
Figured out how to fix it! o_O It was a quick fix but I fixed it. What I did was (and you can change the name of this script as well, I'm not too upset if someone else uses it)
It's just basically a 'hack and slash' of TestCenter. Just grabbing something and then enabling it from the tip top of the test center script. Easy solution, easy fix and it works.

CSS:
using System;
using System.Text;
using Server.Gumps;
using Server.Network;
using Server.Commands;

namespace Server.Misc
{
    public class SphereCenter
    {
        private const bool m_Enabled = true;
        public static bool Enabled { get{ return m_Enabled; } }
    }
}
 
Back