RunUO Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Error creating house

ufruo

Wanderer
when I create a custom home on the console fails, the game does not see the stairs and the area is blocked.

Does anyone know to fix it?

client version: 6.0.1.10

thanks!

error: System.IndexOutOfRangeException: Index was outside the bounds of the array.
at Server.Multis.DesignStateDetailed..ctor(Int32 serial, Int32 revision, Int32 xMin, Int32 yMin, Int32 xMax, Int32 yMax, MultiTileEntry[] tiles)
at Server.Multis.DesignStateDetailed.CompressionThread()
 

amon2

Sorceror
I have that problem to. And When I place a old style house I cant open doors or move inside... if I get inside.. its like I fall through the floor and get stuck
 

Thynro

Wanderer
MapDefinitions.cs is what your gonna want to track down.

Code:
MultiComponentList.PostHSFormat = true; // OSI Client Patch 7.0.9.0

needs to become this

Code:
MultiComponentList.PostHSFormat = false; // OSI Client Patch 7.0.9.0


For some reason the new clients have an issue.
 
Top