#W# New character spawn point. Disabled Young status.

This commit is contained in:
WarrentyExpired 2026-08-07 11:38:59 -04:00
parent b66773c594
commit 925df702a1
6 changed files with 23 additions and 200 deletions

View file

@ -29,7 +29,7 @@ namespace Server.Misc
PackItem( new RedBook( "a book", m.Name, 20, true ) );
if (ValidSettings.StartingGold() > 0)
PackItem( new Gold( ValidSettings.StartingGold() ) ); // Starting gold can be customized here
PackItem( new Gold( ValidSettings.StartingGold() ) );
PackItem( new Dagger() );
PackItem( new Candle() );
}
@ -656,7 +656,7 @@ namespace Server.Misc
pm.Profession = args.Profession;
if ( pm.AccessLevel == AccessLevel.Player && ((Account)pm.Account).Young )
young = pm.Young = true;
young = pm.Young = false;
}
SetName( newChar, args.Name );
@ -699,11 +699,12 @@ namespace Server.Misc
CityInfo city = GetStartLocation( args, young );
newChar.MoveToWorld( city.Location, city.Map );
//newChar.MoveToWorld( city.Location, city.Map );
newChar.MoveToWorld( new Point3D( 865, 605, 0 ), Map.Felucca );
Console.WriteLine( "Login: {0}: New character being created (account={1})", state, args.Account.Username );
Console.WriteLine( " - Character: {0} (serial={1})", newChar.Name, newChar.Serial );
Console.WriteLine( " - Started: {0} {1} in {2}", city.City, city.Location, city.Map.ToString() );
Console.WriteLine( " - Started: Bastion (865, 605, 0) in Vaelen" );
new WelcomeTimer( newChar ).Start();
}

View file

@ -14,7 +14,7 @@ namespace Server.Misc
private static string[] m_Messages =
new string[]
{
"Welcome to Britannia.",
"Welcome to Avatars Conquest.",
"Please enjoy your stay."
};