View Single Post
Old 06-28-2007, 10:23 AM   #11 (permalink)
CEO
Forum Novice
 
CEO's Avatar
 
Join Date: Jun 2004
Age: 49
Posts: 808
Default

Strange. That's what we're running, least I thought so. Can you look at your basehouse.cs in multis. Search for allHouses, around line 86. What is that code like. This is what I have in my basehouse.cs at those lines:


Code:
			List<BaseHouse> allHouses = new List<BaseHouse>( 2 );

				for ( int i = 0; i < acct.Length; ++i )
				{
					Mobile mob = acct[i];

					if ( mob != null )
						allHouses.AddRange( GetHouses( mob ) );
				}
And that's what I used as an example to create a list of player houses.

Quote:
Originally Posted by nadious View Post
Is this html file generated automatically? Or do you have to run the command everytime you want the file to update it's information?
You have to run the command, or you can add it into your reports.cs file to fire off automatically as well with other reports.
__________________
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; 06-28-2007 at 10:27 AM.
CEO is offline   Reply With Quote