if (readyYesNo == "Yes" || "yes" || "y" || "Y" || "Yeah")
{
areYouReady = true;
}
else if (readyYesNo == "No" || "no" || "n" || "N")
{
areYouReady = false;
}
else { cout << "Please enter a valid response"; }
if (areYouReady)
{
cout << "Here we go...\n";
cin.get();
cout << "Teleporting...\n";
cin.get();
cout << "You wake up on a damp forest floor. The smell of rain fills your nostrils. You hear the sound of a river to your right.\n";
cin.get();
cout << "Enter a direction...";
cin >> movementDirection;
if (movementDirection == "right")
{
cout << "You come across a murky river. You bend down to examine the river. You jump, startled, as you see a face that is not your own.\n";
system("pause");
}
else if (movementDirection == "left")
{
return 0; //Remember to add things here
}
else if (movementDirection == "forward")
{
return 0; // Remember to add things here
}
else if (movementDirection == "back")
{
return 0;
}
else { cout << "Enter a valid direction"; }
If you could help me, that'd be great. Thanks.


Sign In
Create Account


Back to top










