Go Back   RunUO - Ultima Online Emulation > RunUO > Server Support on Mono

Server Support on Mono Forum dedicated to RunUO 2.0 on Mono.

Reply
 
Thread Tools Display Modes
Old 12-29-2007, 03:55 PM   #26 (permalink)
Newbie
 
Join Date: Jul 2006
Age: 17
Posts: 57
Default

Quote:
Originally Posted by CEO View Post
How are you logging in after these mods? Logging with Razor I get:

Client: 127.0.0.1: Connected. [1 Online]
Client: 127.0.0.1: Encrypted client detected, disconnecting
Client: 127.0.0.1: Disconnected. [0 Online]

So I'm guessing Razor still needs to do a few things to the client. Doesn't matter whether I check or uncheck encryption options.

Also, I'd recommend for those using latest SVN to use MutatePacketLength in MessagePump.cs, it's obviously setup to easily incorporate additional packet changes like this.

Code:
					MutatePacketLength( packetID, ns, ref packetLength );

					if ( packetLength <= 0 )
					{
						if ( length >= 3 )

then:

Code:
		public static void MutatePacketLength( int packet, NetState state, ref int length )
		{
			//This is only for static size packets
			if ( Packet.IsUOKRPacket( state.Version ) )
				switch ( packet )
				{
					case 0x08: length = 15; break;   // 6.0.1.7
                                        case 0x48: length = 6528; break; // 6.0.5.0
				}
		}
I don't have this code:
Code:
					MutatePacketLength( packetID, ns, ref packetLength );

					if ( packetLength <= 0 )
					{
						if ( length >= 3 )
I using SVN264 and Mondain's Legacy svn37, but i using windows runuo. Please help
ThalmagusPL is offline   Reply With Quote
Old 12-29-2007, 04:08 PM   #27 (permalink)
CEO
Forum Novice
 
CEO's Avatar
 
Join Date: Jun 2004
Age: 48
Posts: 781
Default

Please don't use that code. I thought it was an SVN core change, but instead was a change by one of our devs before the SVN was patched up to work with that client. And from what I gather was also probably not the way to do it according to a post later by one of the devs.... Sorry for the confusion. Stick with whatever is in the latest SVN.
__________________
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
CEO is offline   Reply With Quote
Old 12-29-2007, 06:39 PM   #28 (permalink)
Newbie
 
Join Date: Jul 2006
Age: 17
Posts: 57
Default

But I do not know to install Mondain's Legacy in the newest SVN
ThalmagusPL is offline   Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off



Powered by vBulletin® Version 3.7.0
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0 RC5