Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
#include <string>
#include <iostream>
using namespace std;
//--------------ROOM 1 ---------------------
string room1start = "You wake up in a room... Your vision is still blurred, at first you can see that you're in an old room,\n"
"the floor is creaking and the walls are full of spider nests. It is a creepy room and all you want to do is get out.\n"
"As you are feeling better you can see a table and a door. You can also hear a ticking clock.";
string room1table = "You have reached the table, you can see a key lying on the table and you pick it up";
string room1key = "The key is in your pocket";
string room1door = "You have reached the door please insert the key to proceed forward";
//--------------ROOM 2 ---------------------
string room2start = "Stepping through the door way, you enter another room, a little larger than the previous. The room \n"
"before you is a lot more furnished, with a ornate wooden desk, accompanied with an oak chair, an expensive-looking \n"
"rug, and peeling wallpaper. On one of the walls, the letter 'E' has been scrawled in red. You'd prefer not to think about \n"
"what that substance might be. On the other side of the room is another door, an alphanumeric keypad set into the wall beside it.";
string room2desk = "Moving towards the desk, you reach towards the desk drawer and pull it open. Painted in the same dark red colour \n"
"as the letter on the wall is the letter \e[1m'L'\e[0m. As you open the draw all the way, you hear a loud clunk, and a plume \n"
"of smoke starts funneling out from the draw. Opening the drawer must have triggered a trap! The urgency of needing to \n"
"escape increases, otherwise you may be burnt alive!";
string room2chair = "As you inspect the chair, you notice one of the front legs has a gouged chunk missing. Flipping the chair over, you see \n"
"a letter 'H' scrawled in the same now familiar substance on the underside of the seat cushion";
string room2wall = "After further surveying the walls you notice on closest wall to the door you came in is a section of peeling wallpaper \n"
"that seems more severe than other patches. After pulling at the wallpaper, it comes away to reveal a 'P'.";
string room2rug = "Crouching down, you pull at one edge of the rug. As you lift it up, a click resonates around the room, and a hidden nozzle puffs out a \n"
"cloud of yellow, which you quickly back away from.";
string room2keypad= " You are in front of the keypad. What do you want to input?";
string room2end = "Inputting the code into the door, you hear a click and the door swings open away from you!";
//--------------ROOM 3 ---------------------
string room3start = "You enter the next room, your eyes immediately drawn to a bright green arrow pointing to the other side of the room. Daylight\n"
"streams in through windows although even from here you can tell these windows have been reinforced. Surveying the rest\n"
"of the room, you see a red sofa with a yellow cushion, and on a table a green mug and blue plastic plate. You sense these \n"
"colours may have something to do with solving this final riddle. Off to one side is a table with coloured buttons, red, blue, green, and yellow.\n"
"To escape this room you must enter the colours in the correct sequence, for example you must type in BYRG\n"
"If the order is correct you will escape, if not you will have to keep on doing it till u are correct\n"
"Riddle for the first letter - Why was the Incredible Hulk so good at gardening? \n"
"Riddle for the third letter - Some say you are this color, When you are feeling down, Your eyes might be this color,If they’re not green or brown\n"
"If you are not able to solve the riddles for the first and third letter, just type HELP, and we will solve it for you, Good Luck!!";
string room3correct = "You hear silence, you must have made the correct choice!\n";
string room3incorrect = "You hear a loud click, you’ve triggered something! Hurry up and keep trying!\n";
string room3riddle = "Your combinations are no where near correct try to resolve the riddles for the first and third letter, but if u cannot consider asking for help\n";
string room3hint1 = "The first letter is Green, now place the remaining in sequence, G___\n";
string room3hint2 = "The third letter is Blue, now place the remaining in sequence, G_B_\n";
string room3end = "The door opens and you see a bright golden key lying near the door, you pick it up and go down the stairs that are in front of you\n"
"You now reach the biggest door you have seen across the entire house, you think its the exit!\n";
string Game_End = "The door opens, You feel the sunlight after a long time, you step outside in the garden, the wind is blowing hard against your face, you are confused as to should u inspect the house from the outside\n"
"Press 1 to Look around the property\n"
"Press 2 to leave and go home\n";
string Go_Home = "As you stand there trying to gather your thougths, you see a cab nearby, you run towards it, sit in it and just keep riding away from that mysterious house\n"
"Congratulations!! You have successfully completed the game\n";
string Look_Around = "Deciding to look around the house before leaving sends chills down your spine, but would also quench the curiosity you have regarding the house\n"
"You try to analyze things around the house, picking up things here and there\n"
"You are in the backyard, you see a golden chest and you think your decision to look around was worth it because now you will be rich\n"
"You try to open the chest with the help of a metal bar near you, but as soon as u open it, suddenly the wooden plank under you breaks and you fall down into a pit filled with snakes\n"
"Game Over! You have lost, You must have heard the saying, curiosity killed the cat, in this case it killed you.\n";