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!

Wall walker

Hades1089

Traveler
for some reason in my britain bank stuff like pets and NPC's keep walking through the wall does anyone no how to stop this?
 

Hades1089

Traveler
please somebody i also got a question that why is it when i lay down a house the stairs dont come with it then it says on my black screen (runuo screen)
"index out of bounds" says it multiple of times
 

Scriptiz

Sorceror
Can you walk trough the walls that NPC are walking throug?

Index Out Of Bound Exception occurs when you try to access an array index wich is out of the bounds of the array.

By example :

int[] myArray = new int[5]; // create an array with 5 places (index from 0 to 4
Console.WriteLine(myArray[0]); // OK
Console.WriteLine(myArray[1]); // OK
Console.WriteLine(myArray[2]); // OK
Console.WriteLine(myArray[3]); // OK
Console.WriteLine(myArray[4]); // OK
Console.WriteLine(myArray[5]); // Index out of bounds exception !!!
Console.WriteLine(myArray[6]); // Index out of bounds exception !!!
// ...

Try to get a look in the code where the Console (Black RunUO screen) tell you the exception is throwed.
 

Hades1089

Traveler
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)

thats wat i get on blk screen
 
Top