Go Back   RunUO - Ultima Online Emulation > RunUO > New Join Forum

New Join Forum So your new to RunUO and looking to work with people that are new, this is the place.

Reply
 
Thread Tools Display Modes
Old 09-24-2008, 10:45 AM   #1 (permalink)
Lurker
 
Join Date: Sep 2008
Age: 15
Posts: 23
Unhappy Trammel Maps HELP :(

ok when i telepot in trammel my guy goes thru the floor and i dont know why [m tele works just fine in fel help???? thxs for helping me and i see balck all around me i can walk just fine
darkjesse13 is offline   Reply With Quote
Old 09-24-2008, 02:28 PM   #2 (permalink)
Forum Expert
 
Greystar's Avatar
 
Join Date: Mar 2004
Location: NorthCentral IL, USA
Age: 35
Posts: 3,848
Default

Quote:
Originally Posted by darkjesse13 View Post
ok when i telepot in trammel my guy goes thru the floor and i dont know why [m tele works just fine in fel help???? thxs for helping me and i see balck all around me i can walk just fine
Make sure you are using the Correct Client with RunUO 2.0. I think the client you should use is 6.0 or higher. There was a split in the maps around 6.0 which RunUO 2.0 RC2 took into account for and it may be the reason you are falling through the ground.
__________________
Quote:
(\__/)
(='.'=)This is Bunny. Copy and paste bunny into your
(")_(")signature to help him gain world domination.
Killable Guards (GS Version)
Just a Simple Staff Tool
You can leave me messages.
Ernest Gary Gygax - Quote "I would like the world to remember me as the guy who really enjoyed playing games and sharing his knowledge and his fun pastimes with everybody else."
Greystar is offline   Reply With Quote
Old 09-24-2008, 04:29 PM   #3 (permalink)
Forum Novice
 
Join Date: Dec 2006
Location: Southern Utah
Age: 29
Posts: 937
Send a message via Yahoo to greywolf79
Default

Lower client is ok on newer shard (at least in my experience). I use Mondain's Legacy patched to 5.0.9.1 (last one before 6.0.xx) and it works fine on both RC1 and RC2. But if you use over 6.0.xx then you would want to use RC2 because RC1 does not support that high of a client (stops at 5.0.9.1 if I remember right - RC2 stops working with clients higher than 6.0.5.0 if I remember right on that one)... But if you have SVN 300 (newest I am aware of) I hear it can support all the way upto 6.0.5.0 and maybe higher now.

GreyWolf.
greywolf79 is offline   Reply With Quote
Old 09-24-2008, 08:30 PM   #4 (permalink)
Lurker
 
Join Date: Sep 2008
Age: 15
Posts: 23
Default

im patched to 5.0.9.1 and i am using rc2
darkjesse13 is offline   Reply With Quote
Old 09-25-2008, 08:49 AM   #5 (permalink)
Forum Novice
 
Join Date: Aug 2003
Age: 32
Posts: 428
Send a message via MSN to aventae
Default

Quote:
Originally Posted by darkjesse13 View Post
im patched to 5.0.9.1 and i am using rc2
Could possibly be that your stat*.mul and tiledata.mul files are corrupt and causing the problem.

Also outta curiosity what client version are you using to connect to the server with? might not be the server itself. but the client your connecting with.
aventae is offline   Reply With Quote
Old 09-25-2008, 02:31 PM   #6 (permalink)
Forum Novice
 
Join Date: Jan 2006
Posts: 327
Default

Quote:
Originally Posted by darkjesse13 View Post
im patched to 5.0.9.1 and i am using rc2
To use a client version earlier than 6.0.0.0 on RC2 or SVN you need to update your MapDefinitions.cs file with 2 edits, as shown below in red.
Code:
using System;
using Server;

namespace Server.Misc
{
	public class MapDefinitions
	{
		public static void Configure()
		{
			/* Here we configure all maps. Some notes:
			 * 
			 * 1) The first 32 maps are reserved for core use.
			 * 2) Map 0x7F is reserved for core use.
			 * 3) Map 0xFF is reserved for core use.
			 * 4) Changing or removing any predefined maps may cause server instability.
			 */

			RegisterMap( 0, 0, 0, 7168, 4096, 4, "Felucca",		MapRules.FeluccaRules );
			RegisterMap( 1, 1, 0, 7168, 4096, 0, "Trammel",		MapRules.TrammelRules );
			RegisterMap( 2, 2, 2, 2304, 1600, 1, "Ilshenar",	MapRules.TrammelRules );
			RegisterMap( 3, 3, 3, 2560, 2048, 1, "Malas",		MapRules.TrammelRules );
			RegisterMap( 4, 4, 4, 1448, 1448, 1, "Tokuno",		MapRules.TrammelRules );

			RegisterMap( 0x7F, 0x7F, 0x7F, Map.SectorSize, Map.SectorSize, 1, "Internal", MapRules.Internal );

			/* Example of registering a custom map:
			 * RegisterMap( 32, 0, 0, 6144, 4096, 3, "Iceland", MapRules.FeluccaRules );
			 * 
			 * Defined:
			 * RegisterMap( <index>, <mapID>, <fileIndex>, <width>, <height>, <season>, <name>, <rules> );
			 *  - <index> : An unreserved unique index for this map
			 *  - <mapID> : An identification number used in client communications. For any visible maps, this value must be from 0-3
			 *  - <fileIndex> : A file identification number. For any visible maps, this value must be 0, 2, 3, or 4
			 *  - <width>, <height> : Size of the map (in tiles)
			 *  - <name> : Reference name for the map, used in props gump, get/set commands, region loading, etc
			 *  - <rules> : Rules and restrictions associated with the map. See documentation for details
			*/

			TileMatrixPatch.Enabled = true;	//OSI client patch 6.0.0.0
		}

		public static void RegisterMap( int mapIndex, int mapID, int fileIndex, int width, int height, int season, string name, MapRules rules )
		{
			Map newMap = new Map( mapID, mapIndex, fileIndex, width, height, season, name, rules );

			Map.Maps[mapIndex] = newMap;
			Map.AllMaps.Add( newMap );
		}
	}
}
razzles is offline   Reply With Quote
Old 09-25-2008, 07:08 PM   #7 (permalink)
Lurker
 
Join Date: Sep 2008
Age: 15
Posts: 23
Default

copy and paste in mapdefintions.cs? or put it in customs? im using ml btw
darkjesse13 is offline   Reply With Quote
Old 09-25-2008, 07:23 PM   #8 (permalink)
Lurker
 
Join Date: Sep 2008
Age: 15
Posts: 23
Default

it didnt work
i copy and pasted in my mapdefintion file and i still get stuck help???
darkjesse13 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