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!

Beta 19 AoS?!

Goku

Wanderer
Beta 19 AoS?!

I just completed deleted Beta 18 off of my computer due to problems with a few scripts I had lost. I then downloaded the Beta 19 version. Its AOS! I don't like AoS at all. Is there any way to remove ALL AoS features from my shard?

Thank you
 

Goku

Wanderer
You don't understand. It is set as false. And there is still AoS. It shows the item properties of AoS when you highlight the item instead of click it. I don't want that! I want it like uo was exactly before AoS.
 

Goku

Wanderer
The little annoying square icon thing is still there too. I want it gone how do I complete get rid of every AoS aspect of Beta 19? Will it work if I delete the AOS.cs file?
 

Phantom

Knight
Kakaroth said:
The little annoying square icon thing is still there too. I want it gone how do I complete get rid of every AoS aspect of Beta 19? Will it work if I delete the AOS.cs file?

Then you didn't disable it....


post what you have for the AOS.cs DONT" DELETE IT!
 

satch

Wanderer
Ok very simple to desactivate it.

When I create different characters i have juste the paladine book.

This fonctions will be move out of the core?
 

Phantom

Knight
satch said:
Ok very simple to desactivate it.

When I create different characters i have juste the paladine book.

This fonctions will be move out of the core?

Thats client side, but you shouldn't get the books if you don't have AOS enabled.
 

satch

Wanderer
So we can't use the books as we want and there is no gumps in the core for this items.

Or peraphs i dont understand you :)
 

Phantom

Knight
satch said:
So we can't use the books as we want and there is no gumps in the core for this items.

Or peraphs i dont understand you :)

The books are part of the client packet but should not be there if aos is disabled.
 

Goku

Wanderer
Ok this is what is in my AOS.cs file.


using System;
using Server;

namespace Server.Misc
{
public class AOS
{
private const bool Enabled = false;

public static void Configure()
{
Core.AOS = disabled;
ObjectPropertyList.Enabled = disable;
}
}
}
 
...

This is exactly what AOS.cs should be to be disabled:
[code:1]using System;
using Server;

namespace Server.Misc
{
public class AOS
{
private const bool Enabled = false;

public static void Configure()
{
Core.AOS = Disabled;
ObjectPropertyList.Enabled = Disabled;
}
}
}[/code:1]
You didn't do yours right, if it is really the same as what you posted:
[code:1]ObjectPropertyList.Enabled = disable; [/code:1]
Should be:
[code:1]ObjectPropertyList.Enabled = disabled; [/code:1] Noticed the D at the end.^^
 

Ravatar

Knight
<pre>
using System;
using Server;

namespace Server.Misc
{
public class AOS
{
private const bool Enabled = false;

public static void Configure()
{
Core.AOS = Enabled;
ObjectPropertyList.Enabled = Enabled;
}
}
}


Thats how you disable AOS... take a look at the script..
private const bool Enabled = false;
-Thats telling us that "Enabled" = false

public static void Configure()
{
Core.AOS = Enabled;
ObjectPropertyList.Enabled = Enabled;
}

- Thats telling us that Core.AOS = Enabled (which equals false)
- and ObjectPropertyList.Enabled = Enabled (which equals false)
</pre>
 
Top