Quote:
|
Originally Posted by Golemi
How to select the player starting place? I would like them to start in a welcoming centre or something like it. Help?
|
the changes would need to be in the characterCreation.cs file, this is in your runuo/scripts/multi folder, make sure you make a backup before making any changes.
there have been post on changing the starting location like this one from Lysdexic:
in charactercreation.cs change this:
Code:
CityInfo city = GetStartLocation( args, young );
//CityInfo city = new CityInfo( "Britain", "Sweet Dreams Inn", 5211, 1058, 0, Map.Felucca );
to this:
Code:
//CityInfo city = GetStartLocation( args, young );
CityInfo city = new CityInfo( "Starting Room", "Starting Room", 2936, 3353, 17, Map.Felucca );
this is just one post in a search in this thread:
How do I change the Stat Gain?
keep searching and reading, you will find tons of information helping you do what you want.