Console.WriteLine("Welcome to the Dota 2 Quiz!")
Console.WriteLine("---------------------------")
Console.WriteLine("1 - Play Game")
Console.WriteLine("2 - Instructions")
Console.WriteLine("3 - Report an issue")
Console.WriteLine("4 - Quit Game")
Console.WriteLine("What do you want to do?")
selection = Console.ReadLine()
Dim attempt as integer = 0
Console.WriteLine("Who is the flower of Dota?")
guess = Console.ReadLine()
Console.WriteLine("You have " & 3 - attempt & " attempts left.")
Loop Until attempt = 3 Or guess = "N0tail"
If guess.ToLower() = "n0tail" Then
Console.WriteLine("You are correct!")
Console.WriteLine("You are out of guesses... The awnser is N0tail!")
ElseIf selection = 2 then
Console.WriteLine("When you enter 1 the quiz will ask you a question.")
Console.WriteLine("You will have three attempts to awnser the question.")
ElseIf selection = 4 then
Console.Write("Closing game...")
ElseIf selection = 3 then
Console.WriteLine("Copy this link: https://github.com/TeemoTimeCodes/VB.NET_Calculator/issues")
Console.WriteLine("Error: Your value '" & selection & "' has not been recognised.")