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!

Ultima SDK Converted to 2.0

Jeff

Lord
Ultima SDK Converted to 2.0

Since these haven't been updated to such and I needed them to be. I've updated this to 2.0 and thought I'd share.
 

Attachments

  • Ultima.rar
    27.8 KB · Views: 1,653
  • UltimaDll.rar
    19 KB · Views: 1,836

Brutus5000

Sorceror
There seems to be a bug with the dictionary in Animation.cs in LoadTable()

Code:
			for ( int i = 0; i < count; ++i )
			{
				object o = BodyTable.m_Entries[i];

				if ( o == null || BodyConverter.Contains( i ) )
				{
					m_Table[i] = i;
				}
                        [...]


object o = BodyTable.m_Entries;

For i=0 there is no entry in the hashtable/dictionary:
A dictionary throws a KeyNotFoundException, a hashtable returns null.
 

Mogster

Wanderer
Hi i have the same problem with the .dll and when you try to extract it it says it curupted. Can anyone post a new link or explain how to use the source to make a .dll. sorry abit of a newbie when it some down to this sort of stuff.

thanks for your time

Mogster
 
Top