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!

Adding Artwork

Kingllama

Knight
How do I add the artwork or animations from higher expansions from UOAOS to UOML?

I'm looking to at flesh golems and the weapons and armor and things of that nature to my server to give a wide verity so people can still have the old school feel with the new school look.
 

September

Sorceror
you will need to make or acquire your artwork and add them into the client yourself. Tutorial for adding in forums :)
 

Raserei

Sorceror
Hey again :)

Rather than messing with the expansions, its much easier just to make a custom script such as this:

Code:
using System;
using Server;
using Server.Network;
 
namespace Server.Misc
{
    public class ExpansionArt
    {
          public static void Initialize() {
          Server.Network.SupportedFeatures.Value = FeatureFlags.ExpansionSA;
 
        }
    }
}

Then drop it in your custom folder, and boom!
 

Kingllama

Knight
Hey again :)

Rather than messing with the expansions, its much easier just to make a custom script such as this:

Code:
using System;
using Server;
using Server.Network;
 
namespace Server.Misc
{
    public class ExpansionArt
    {
          public static void Initialize() {
          Server.Network.SupportedFeatures.Value = FeatureFlags.ExpansionSA;
 
        }
    }
}

Then drop it in your custom folder, and boom!
I'll test this out man! Thank you!
 
Top