Recent content by Sir Criesalot

  1. Sir Criesalot

    New players being attacked with Young Status

    It has been 14 days so I assume you have resolved this by now, but I can only guess that this expression is true? (Quest !=null&& Quest.IgnoreYoungProtection(from)) You could set a breakpoint in your IDE at the start of this function and see what happens
  2. Sir Criesalot

    Learning: Arrays, need help

    Not quite. Each Rectangle2D object is an individual rectangle. In order to define a rectangle you only need 3 pieces of information - The position of the top left corner, and the width and height of the rectangle. AreaArray[0] = new Rectangle2D(-3, -3, 7, 7); This is the first rectangle...
  3. Sir Criesalot

    Hello everyone!

    Welcome
  4. Sir Criesalot

    UO:R client

    I should have looked around more before posting. I've just found the Poor Man's UO Resource thread. Lots of good stuff in there.
  5. Sir Criesalot

    UO:R client

    I'm looking for a pre-AOS client. Is there somewhere I can download one from, or do people just download the client from the official site and stop patching at a specific version? I am also looking at creating a custom map. I have downloaded Centred+ and setting it up. Is this the best tool for...
  6. Sir Criesalot

    Learning: Arrays, need help

    I'm not familiar enough with the code yet to explain how it works in regard to houses, but I can explain the c# code. What you have here is an array which contains 2 Rectangle2D objects. This array is called AreaArray. The code is creating the array and adding 2 elements to it at the same time...
  7. Sir Criesalot

    Hello

    Hi. I've finally decided to try my hand at creating a private UO shard. I did head over to RunUO first but seen that it is dead, a bit of searching later and I've ended up here. So... now I'm just doing lots of reading, downloading the source code and getting dug in. I'm a c# developer by...
Back