how do i make it so you can have mor then one house


# Number of houses allowed per account
# Note that only the most recently placed house will auto-refresh
AccountHouseLimit=2

i have that but when players on my own network seas they alredy own house pls help
 
If you set it in Config/Housing.cfg
for 2 then they should be able to place 2 houses per account
 
Im not 100% but i think its one above what you want. Ex: for 2 houses you'd set it to 3, for 3 houses you'd set it 4 ect ect
 
namespace Server.Multis
{
public abstract class BaseHouse : BaseMulti
{
private static int m_AccountHouseLimit = Config.Get("Housing.AccountHouseLimit", 3);

public static bool NewVendorSystem
{
get
{
return Core.AOS;
}
}// Is new player vendor system enabled?

public const int MaxCoOwners = 15;
public static int MaxFriends
{

think this is right but stil cant have mor then one house
[doublepost=1483828438][/doublepost]# Number of houses allowed per account
# Note that only the most recently placed house will auto-refresh
AccountHouseLimit=3

also have this in housing.cfg
 
Back