ServUO Version
Publish 57
Ultima Expansion
Endless Journey
Tring to add a new script i found, but when compiling i get this error


CS1056: Line 53: Unexpected character '$'
 
If you're using a c# version < 6.0 you can't use string interpolation. I'd suggest you to update your code and migrate to a more recent version (there should be guides for servUO).

If you don't want to, swap this line:
PrivateOverheadMessage(MessageType.Regular, 453, false, $"There are currently {count} placed houses with {iCount} in danger of collapsing and {gCount} that are greatly worn.", m.NetState);

with this line:
PrivateOverheadMessage(MessageType.Regular, 453, false, string.Format("There are currently {0} placed houses with {1} in danger of collapsing and {2} that are greatly worn.", count, iCount, gCount), m.NetState);
 
Back