hello.. im trying to change the housing limit. i changed it in base house and in config the housing script.. after restart it still doesnt let players place more than 1 house. not sure why its not working
 
Here is something I use for RunUO...in case it works for ServUO...

C#:
using System;
using Server.Misc;

namespace Server
{
    public class ServerConfig
    {
        public static int MaxHouses = 5;
    }
}
 
Here is something I use for RunUO...in case it works for ServUO...

C#:
using System;
using Server.Misc;

namespace Server
{
    public class ServerConfig
    {
        public static int MaxHouses = 5;
    }
}
Thank you.. we have servuo..i changed the config. housing and it didnt work.. never had this issue on the server i owned i changed it in same spots and worked perfect now on a friends server. it doesnt work
 
I have a servuo server and I changed it in basehouse.cs only and it worked.

if (houses.Count >= 3)

It was around line 3500 of basehouse.cs
 
As Funk said if it's a server Beyond publish 57 you will have to recompile the bat file for the change to take effect. Even then it may only work for newly created accounts. Make sure to recompile the server though for that change to take effect.
 
@mcube520 so you need to search AccountSettings.cs in your scripts folder. it should be under services/shardcontrol/settings I believe, and in it search for maxhouse
 
Back