|
||
|
|||||||
| RunUO Post Archive The Archvie |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 (permalink) |
|
Forum Expert
Join Date: Oct 2002
Posts: 508
|
How do I let people choose the city they start in?
This is very very easy all you do is change one little line in your scripts... First off, you need to open the file called CharacterCreation.cs with your editor. (Located at: YourRunUOFolder\Scripts\Misc\) Next, you need to find this code... Code:
//CityInfo city = args.City; CityInfo city = new CityInfo( "Britain", "Sweet Dreams Inn", 1496, 1628, 10 ); Code:
CityInfo city = args.City; //CityInfo city = new CityInfo( "Britain", "Sweet Dreams Inn", 1496, 1628, 10 ); Almost as simple as the first one. In the same file, and the same location, as we were in this last example, you change this code... Code:
CityInfo city = new CityInfo( "Britain", "Sweet Dreams Inn", 1496, 1628, 10 ); Code:
CityInfo city = new CityInfo( "NewbieArea", "My New Player Location", x, y, z ); Example: Code:
//CityInfo city = args.City; CityInfo city = new CityInfo( "CustomTown", "My Custom Place", 1234, 1234, 0 ); |
|
|
|
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|