I am trying to make it so all the choices of towns to spawn in during your character creation phase are available and working. No matter where you click you're sent to Britain. (which is what I originally wanted but now I want to actually use the gump.)
 

Attachments

  • [ServUO.com]-Felucca.png
    [ServUO.com]-Felucca.png
    241.4 KB · Views: 29
You will need to use
Code:
CityInfo city = args.City;
instead of
Code:
CityInfo city = new CityInfo( "Britain", "Sweet Dreams Inn", 1495, 1628, 10, Map.Felucca );
in your Charactercreation.cs.

Also if you want them to choose between Trammel and Felucca add the code below to your AccountHandler.cs, you should also be able to add any other facet as a starting location as well like Termur by adding the location and map assignment just like we did with trammel in this example.
Code:
            private static CityInfo[] StartingCities = new CityInfo[]
            {
                new CityInfo( "Yew",        "The Empath Abbey",1075072,            633,    858,    0    , Map.Felucca  ),
                new CityInfo( "Minoc",        "The Barnacle",1075073,                2476,    413,    15    , Map.Felucca ),
                new CityInfo( "Britain",    "Sweet Dreams Inn",1075074,            1496,    1628,    10    , Map.Felucca ),
                new CityInfo( "Moonglow",    "The Scholars Inn",1075075,            4408,    1168,    0    , Map.Felucca  ),
                new CityInfo( "Trinsic",    "The Traveler's Inn",1075076,        1845,    2745,    0    , Map.Felucca  ),
                new CityInfo( "Magincia",    "The Great Horns Tavern",1075077,    3734,    2222,    20    , Map.Felucca ),
                new CityInfo( "Jhelom",        "The Mercenary Inn",1075078,        1374,    3826,    0    , Map.Felucca  ),
                new CityInfo( "Skara Brae",    "The Falconer's Inn",1075079,        618,    2234,    0   , Map.Felucca),
                new CityInfo( "Vesper",        "The Ironwood Inn",    1075080,        2771,    976,    0   , Map.Felucca),
                new CityInfo( "Ocllo",        "Buckler's Hideaway",1150168,        3667,    2625,    0   , Map.Felucca),
                new CityInfo( "Yew",        "The Empath Abbey",1075072,            633,    858,    0    , Map.Trammel  ),
                new CityInfo( "Minoc",        "The Barnacle",1075073,                2476,    413,    15    , Map.Trammel ),
                new CityInfo( "Britain",    "Sweet Dreams Inn",1075074,            1496,    1628,    10    , Map.Trammel ),
                new CityInfo( "Moonglow",    "The Scholars Inn",1075075,            4408,    1168,    0    , Map.Trammel  ),
                new CityInfo( "Trinsic",    "The Traveler's Inn",1075076,        1845,    2745,    0    , Map.Trammel  ),
                new CityInfo( "Magincia",    "The Great Horns Tavern",1075077,    3734,    2222,    20    , Map.Trammel ),
                new CityInfo( "Jhelom",        "The Mercenary Inn",1075078,        1374,    3826,    0    , Map.Trammel  ),
                new CityInfo( "Skara Brae",    "The Falconer's Inn",1075079,        618,    2234,    0   , Map.Trammel),
                new CityInfo( "Vesper",        "The Ironwood Inn",    1075080,        2771,    976,    0   , Map.Trammel),
                new CityInfo( "New Haven",  "New Haven Bank", 1150168,          3503,   2574,   14  , Map.Trammel )
            };
choose.png
 
Last edited:
Back