GK's Terminal Input/Output Examples

Hello, hello.

Firstly, I redesigned my menu to make it a little more clear what the player needs to do to win and how to navigate through menus.
New%20Terminal%20Menu

Secondly, Here are some input/output examples. (I put a red dot next to the input to clarify)
Terminal%20Output1

In addition to comparing the input to a number, I included the name of the organization AND the string associated with the difficulty level to hack as well.

Terminal%20Output_organization

Terminal%20Output_difficulty

I was able to compare the names of all cases by converting the string to all lowercase letters using this syntax:

else if (input == "2" || input.ToLower() == "college" || input.ToLower() == "moderate")
        {
            Terminal.WriteLine("--You chose Lv 2 (Moderate)");
        }

And lastly, I had a little fun:

Terminal%20Output_fun

Have a great day! :slight_smile::wink:

2 Likes

Very creative. Great idea to think of a load of different ways a player may want to access the different levels.

1 Like

a lot more sophisticated than mine - I like the input.ToLower () inclusion! Nicely done ^_~

Privacy & Terms