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!

Disabling AOS and/OR SE

Greystar

Wanderer
Disabling AOS and/OR SE

Code:
	public class AOS
	{
		private const bool Enabled = true; //set this to false
the above is from AOS.cs

and

the below is from SE.cs
Code:
	public class SE
	{
		public const bool Enabled = true; //set this to false

now to just disable SE you would set the second one to false, but to disable AOS both must be false and once ML is available you'll probably have to turn all three off.
 
Top