Quote:
Originally Posted by Drayvock
So you have to have RunUO2.0 SVN to run this? You can't use RunUO 2.0 [RC1]?
|
For those that are scripting 'challenged' I've added a .zip file that contains the modifications to work on the RC1 version from runuo.com/downloads here are the two lines that need to be changed.
Line 103:
Code:
List<BaseHouse> allHouses = new List<BaseHouse>(2);
to
Code:
ArrayList allHouses = new ArrayList(2);
and
Line 113:
Code:
BaseHouse house = allHouses[i];
to
Code:
BaseHouse house = (BaseHouse) allHouses[i];
And that was it! That version compiles clean for RC1!