ServUO Version
Publish 57
Ultima Expansion
Age Of Shadows
there is a way to block the light function of uo steam?
so players need to use nightsight spell or pot
 
You can force the handshake requirement for it, and disable the ability to toggle the light filter.

Opinion;
You'll likely annoy your players in the process and make the game less accessible to the visually impaired.
Dark lighting in UO looks great thematically, but it doesn't always add to the game-play value, especially if you don't have night sight and all you can see are names floating towards you before the inevitable death screen... but maybe you want that lol

You will need to find and edit Assistants.cs
 
yep i also think so, but I've a kind of gdr project in my mind and I want to try to disable it to make everything more gdr :D

thank you for the tip. I've found this line, maybe I've to edit this one?
FilterLight = 1 << 1, // Light Filter
 
You need to uncomment out DisallowFeature( Features.FilterLight ) in Assistants.cs (line 72):

Code:
public static void Configure()
            {
                //DisallowFeature( Features.FilterLight );
            }

Code:
public static void Configure()
            {
                DisallowFeature( Features.FilterLight );
            }


I ha ve heard that it is possible for players to override this by altering the correpsonding client file. Vorpsire would know more about this than I do.
 
this is my string
Code:
/// <summary>
			///     Enable assistant negotiator?
			/// </summary>
			public static bool Enabled { get; set; }

shuld i change " public static bool Enabled { get; set; } = true; ?"
 
Back