public static void Main()
Console.WriteLine("Enter your game Name:");
public static void gameTitle()
string name = Console.ReadLine();
Console.WriteLine("Welcome to the C# Adveture, " + name + ".");
Console.WriteLine("Press Enter to Continue.......");
public static void intro()
Console.WriteLine("You wake up in a dark creepy place.");
Console.WriteLine("As you are leaving you see a big large object in front of you.");
Console.WriteLine("Press Enter to Continue..");
public static void entrance()
Console.WriteLine("You are at the front door of this creepy place.");
Console.WriteLine("You step out to get a closer look.");
Console.WriteLine("Press Enter to Continue.......");
public static void castle()
Console.WriteLine("You are now face to face with this big dark figure. ");
Console.WriteLine("There are two ways out run or stay and fight.");
Console.WriteLine("Pick Option: (1-2)");
int option = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("You picked option #" + option + ".");
Console.WriteLine("You see a sea monster.");
Console.WriteLine("Press Enter to Continue.......");
Console.WriteLine("You see two large men with big wepons running at you.");
Console.WriteLine("Press Enter to Continue.......");
Console.WriteLine("You trip over a big white aliegator...........");
Console.WriteLine("Press Enter to Continue.......");
Console.WriteLine("You see a wall with a door.");
Console.WriteLine("Press Enter to Continue.......");
Console.WriteLine("You run as fast as you can to that door before it closes.");
Console.WriteLine("Press Enter to Continue.......");
Console.WriteLine("I don't know....\nPlease try to do it again. Pick 1-2.");
public static void guard()
Console.WriteLine("In order to get past the object you must face me.");
Console.WriteLine("You Defend yourself with anything you can find");
for (int i = 0; i < 5; i++)
string weaponChoice = Console.ReadLine().ToLower();
if ((weaponChoice == "3") || (weaponChoice == "4") || (weaponChoice == "5"))
for (int i = 0; i < 2; i++)
Console.WriteLine("\nExcellent choice!");
Console.WriteLine("Press Enter to Continue.......");
Console.WriteLine("You picked the " + weaponChoice + "." + "\nExcellent choice!");
Console.WriteLine("Press Enter to Continue.......");
Console.WriteLine("You picked the " + weaponChoice + ".\nWrong choice.");
Console.WriteLine("Press Enter to Continue.......");
Console.WriteLine("Invalid choice.");
public static void gameOver()
Console.WriteLine("You Lost to the huge enemy.");
Console.WriteLine("Do you want to play again?\n 1 - Yes\n 2 - No");
string playAgain = Console.ReadLine().ToLower();
Console.WriteLine("Thanks for playing.\nI hope you liked my game.");
Console.WriteLine("I don't understand that commmand.\n Please pick 1 for Yes or 2 for No");
public static void youWin()
Console.WriteLine("Congratulations, you defeated the guard.\nYou were able to defeat the enemy.");