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!

How to make Tram and Fel run Independantly

old_school

Wanderer
How to make Tram and Fel run Independantly

Not 100% positive about this but it seems to work for me. Open up your map def.cs file in your scripts/misc

By defult you see this:


Code:
RegisterMap( 0, 0, 0, 7168, 4096, 1, "Felucca",		MapRules.FeluccaRules );
			RegisterMap( 1, 1, 0, 7168, 4096, 0, "Trammel",		MapRules.TrammelRules );



Change it to this:

Without the underline of course

Code:
RegisterMap( 0, 0, 0, 7168, 4096, 1, "Felucca",		MapRules.FeluccaRules );
			RegisterMap( 1, 1, [U]1[/U], 7168, 4096, 0, "Trammel",		MapRules.TrammelRules );
 
Top