I was really confused when i tried to make so simple game, maybe im just out of ideas, here is what i want to make:
int input = 0; Console.WriteLine("You woke up in the island what you gonna do?");
Console.WriteLine("1. Go to city");
Console.WriteLine("2. Survive in wilderness");
input = Console.ReadLine();
if (input == 1) {How i need to go to the jumpspot?}()
if (input == 2) isDead = true; isDeadTrue();
jumpspot: How i need jump here to continue the game???
Console.WriteLine("You are in the city what you gonna do?");
Console.WriteLine("1. Search for food");
Console.WriteLine("2. Kill people");
if (input == 1) {jumpspot2:}()
if (input == 2) isDead = true; isDeadTrue();
jumpspot2:
and it goes on