update 0.3

This commit is contained in:
recroom2016
2022-02-20 02:42:04 -05:00
parent 46ff9f37d3
commit 8c8063a058
6 changed files with 55 additions and 75 deletions

View File

@@ -60,7 +60,7 @@ namespace start
goto Profile;
Profile:
Console.WriteLine("1) Change Username" + Environment.NewLine+ "2) Change Profile Image" + Environment.NewLine + "3) Go Back");
Console.WriteLine("1) Change Username" + Environment.NewLine+ "2) Change Profile Image" + Environment.NewLine + "3) Change Level" + Environment.NewLine + "4) Go Back");
string readline3 = Console.ReadLine();
if (readline3 == "1")
{
@@ -120,13 +120,18 @@ namespace start
Console.Clear();
goto Start;
}
else
{
Console.Clear();
goto Start;
}
}
else if (readline3 == "3")
{
Console.WriteLine("Current Level: " + File.ReadAllText("SaveData\\Profile\\level.txt"));
Console.WriteLine("New Level: ");
string newlevel = Console.ReadLine();
File.WriteAllText("SaveData\\Profile\\level.txt", newlevel);
Console.Clear();
Console.WriteLine("Success!");
goto Start;
}
else if (readline3 == "4")
{
Console.Clear();
goto Start;
@@ -165,7 +170,7 @@ namespace start
}
}
public static string version = "0.2";
public static string version = "0.3";
}
}