View Single Post
Old 07-05-2007, 02:59 PM   #22 (permalink)
CEO
Forum Novice
 
CEO's Avatar
 
Join Date: Jun 2004
Age: 49
Posts: 808
Default

Quote:
Originally Posted by Drayvock View Post
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!
__________________
If you PM me and ask me to write scripts for you I will add you to my ignore list.
Please don't add me to your friends list, I have enough friends. Thx

Last edited by CEO; 07-06-2007 at 01:10 PM.
CEO is offline   Reply With Quote