public static void Main()
Random number = new Random();
Console.WriteLine("Welcome to Dice Guesser!");
Console.WriteLine("In this game I roll a six sided die and you have to guess the number!");
Console.WriteLine("You need one friend to play this game against you.");
Console.WriteLine("After I roll the dice, you get three guesses;");
Console.WriteLine(" * Your first guess gets you 15 points");
Console.WriteLine(" * Your second guess gets you 10 points");
Console.WriteLine(" * And your third guess gets you 5 points");
Console.WriteLine("What is player 1's name?");
Console.WriteLine("Hello " + p1 + "!!!");
Console.WriteLine("What is player 2's name?");
Console.WriteLine("Greetings " + p2 + "!!!");
Console.WriteLine("Press enter to start!");
Console.WriteLine("TURN " + turn);
Console.WriteLine(p1 + "'s score: " + p1points);
Console.WriteLine(p2 + "'s score: " + p2points);
dice = number.Next(1, 7);
Console.WriteLine("The dice has been rolled!");
Console.WriteLine(p1 + ", guess the number!");
guess = int.Parse(Console.ReadLine());
Console.WriteLine(dice + " is the right number!");
Console.WriteLine("That's 15 points to " + p1 + "!");
p1points = p1points + 15;
Console.WriteLine("Press enter to continue...");
Console.WriteLine("Sorry, but " + guess + " is not the right number!");
Console.WriteLine("Try again!");
guess = int.Parse(Console.ReadLine());
Console.WriteLine(dice + " is the right number!");
Console.WriteLine("That's 10 points to " + p1 + "!");
p1points = p1points + 10;
Console.WriteLine("Press enter to continue...");
Console.WriteLine("Oof, " + guess + " is also incorrect!");
Console.WriteLine("Try again!");
guess = int.Parse(Console.ReadLine());
Console.WriteLine(dice + " is the right number!");
Console.WriteLine("That's 5 points to " + p1 + "!");
Console.WriteLine("Press enter to continue...");
Console.WriteLine("Bust! " + guess + " is not our number!");
Console.WriteLine("Better luck next time " + p1 + "!");
Console.WriteLine("Press enter to continue...");
Console.WriteLine("TURN " + turn);
Console.WriteLine(p1 + "'s score: " + p1points);
Console.WriteLine(p2 + "'s score: " + p2points);
dice = number.Next(1, 7);
Console.WriteLine("The dice has been rolled!");
Console.WriteLine(p2 + ", guess the number!");
guess = int.Parse(Console.ReadLine());
Console.WriteLine(dice + " is the right number!");
Console.WriteLine("That's 15 points to " + p2 + "!");
p2points = p2points + 15;
Console.WriteLine("Press enter to continue...");
Console.WriteLine("Sorry, but " + guess + " is not the right number!");
Console.WriteLine("Try again!");
guess = int.Parse(Console.ReadLine());
Console.WriteLine(dice + " is the right number!");
Console.WriteLine("That's 10 points to " + p2 + "!");
p2points = p2points + 10;
Console.WriteLine("Press enter to continue...");
Console.WriteLine("Oof, " + guess + " is also incorrect!");
Console.WriteLine("Try again!");
guess = int.Parse(Console.ReadLine());
Console.WriteLine(dice + " is the right number!");
Console.WriteLine("That's 5 points to " + p2 + "!");
Console.WriteLine("Press enter to continue...");
Console.WriteLine("Bust! " + guess + " is not our number!");
Console.WriteLine("Better luck next time " + p2 + "!");
Console.WriteLine("Press enter to continue...");
Console.WriteLine("Good Game " + p1 + " and " + p2 + "!");
Console.WriteLine("Your scores were:");
Console.WriteLine(p1 + ": " + p1points);
Console.WriteLine(p2 + ": " + p2points);
Console.WriteLine("Well done " + p1 + "!!!");
Console.WriteLine("You'll get them back another time " + p2 + "!");
Console.WriteLine("Well done " + p2 + "!!!");
Console.WriteLine("You'll get them back another time " + p1 + "!");