Typo Fix and First Release

I finally did it, after wasting time on the old version with JSON.NET
This commit is contained in:
Alex D. 2018-02-10 03:53:52 +01:00
parent 2b9fc6aced
commit 88d84b8d76
1 changed files with 4 additions and 4 deletions

View File

@ -12,7 +12,7 @@ namespace UnturnedSL
{
static void Main(string[] args)
{
string lauversion = "rewrite 0.9dev-prerelease";
string lauversion = "rewrite 1.0";
string title = "USL by casKd running on version " + lauversion;
Console.Title = title;
Console.SetWindowSize(100,20);
@ -31,12 +31,12 @@ namespace UnturnedSL
@"C:\Program Files\Steam\SteamApps\Common\Unturned" };
string[] question = {
"Which map would you like to play?",
"What name do you wish your server had?",
"What welcome message would you want to set?",
"What name do you wish your server to be called?",
"What welcome message would you want to have?",
"What port do you want your server to run on?",
"What folder name do you want to assign to your server?",
"Do you want any other parameters for your server?",
"Where is your unturned installation located?"
"Where is your Unturned installation located?"
};
/*Asks user to setup their own server, which later saves in a config file*/
Console.ForegroundColor = ConsoleColor.Yellow;