ServUO Version
Publish Unknown
Ultima Expansion
Renaissance
So I forget where and what line it is to make the old style graphics change to the updated graphics, such as my skeletal dragon looks like a golden dragon, my mummy looks like a blue zombie.
How do i fix this so the mummies look like mummies and the rest of the old style graphics update to look like actually what they are? thank you in advance!
 
Try looking in this thread, it has some code that should help you.


**Edit**
Here is the code I'm referring to;

ExpansionArt:
using System;
using Server;
using Server.Network;

namespace Server.Misc
{
    public class ExpansionArt
    {
          public static void Initialize() {
          Server.Network.SupportedFeatures.Value = FeatureFlags.ExpansionSE;

        }
    }
}

Just create a new file and copy/paste it inside.

This may also enable other features though that you may not want, like SE walls/floors in custom houses.
 
Back