#include <iostream>
using namespace std;
int main()
{
//setting values for the items and characters
{
int player;
int healthvalue = 100;
int sword;
int enemy1;
int enemy2;
std::cout << "Hello player! Welcome to the game!\n\t";
}
{
std::cout << "You wake up in confusion, your whereabouts are unknown.\n"<< std::endl;
std::cout << "A band of goblins approachs you from the distant horizon.\n\t" << std::endl;
std::cout << "Do you draw your sword and stand your ground?\n";
cin >> yes, no;
if (true) {
}
}
}
это то, что мы имеем до сих пор. Мы пытаемся включить опции да и нет. и позже мы могли бы попробовать варианты движения. Может ли кто-нибудь помочь нам с этим? это будет с благодарностью.
Вот что вам нужно сделать:
"yes"
а также "no"
Других решений пока нет …