Being a beginner and new to coding, the littlest things can be so frustrating in the beginning!
Took me awhile to research and drudge through what I did in the original course to figure out how to had extra lines in my script. It is really easy to add (of course there may be better ways of doing this) extra hard returns. Hopefully, this will make the game text easier to ready and less confusing to the players.
In your Terminal.WriteLine statements, at the end of your text but still within the " ", add \n for a hard return. Add \n\n for 2 hard returns. Save your script and try it!
Here is what the statement with the hard returns (\n) looks like when scripted.
void ShowMainMenu()
{
currentScreen = Screen.MainMenu;
Terminal.ClearScreen();
Terminal.WriteLine("What do you wish to hack into today? \n"); //1 hard return
Terminal.WriteLine("Press 1 Local Library");
Terminal.WriteLine("Press 2 City Police Station");
Terminal.WriteLine("Press 3 Government Agency");
Terminal.WriteLine("Press 4 Secret Vault\n\n" );
Terminal.WriteLine("Enter your selection: "); //2 hard returns
}
In the reference image, on top is without extra hard returns while the one on the bottom has two hard returns.
