Advertisement
Guest User

Untitled

a guest
Mar 11th, 2014
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 3.56 KB | None | 0 0
  1. #include <iostream>
  2. #include <Windows.h>
  3. using namespace std;
  4.  
  5. int main(){
  6.     int girl;
  7.     int jake;
  8.     int start;
  9.     int stairs;
  10.     int Door;
  11.     int option;
  12.     cout << "If you want to play this Scuuury game press 1" << endl;
  13.     cin >> start;
  14.  
  15.  
  16.     if (start == 1){
  17.         system("CLS");
  18.  
  19.         cout << "You are in a dark Scuuury building"                     "\n" << endl;
  20.         Sleep(1200);
  21.  
  22.         cout << "There was this little girl named justin"            "\n" << endl;
  23.         Sleep(1200);
  24.  
  25.         cout << "You are going to die from hunger..."                "\n" << endl;
  26.         Sleep(1200);
  27.  
  28.         cout << "Do you eat the little girl?"                        "\n" << endl;
  29.         Sleep(1200);
  30.  
  31.         cout << "By the way your name is jake. "                     "\n" << endl;
  32.         Sleep(1200);
  33.  
  34.         cout << "Press 2 to eat the little girl or 3 to keep going." "\n" << endl;
  35.         cin >> girl;
  36.     }
  37.     else{
  38.         cout << "Play the Scuuury game game!" << endl;
  39.         return 0;
  40.     }
  41.     system("CLS");
  42.     if (girl == 2){
  43.  
  44.         cout << "You ate the girl you cruel bastard but atleast you didnt die...\n" << endl;
  45.         Sleep(1200);
  46.  
  47.         cout << "You start feeling sick...\n" << endl;
  48.         Sleep(1200);
  49.  
  50.         cout << "The girl had a fatal disease and now you have it...\n" << endl;
  51.         Sleep(1200);
  52.  
  53.         cout << "but its cureable\n" << endl;
  54.         Sleep(1200);
  55.  
  56.         cout << "Start looking for the medicine before you die\n" << endl;
  57.         Sleep(1200);
  58.  
  59.         cout << "You come across some stairs that go up and some that go down.\n" << endl;
  60.         Sleep(1200);
  61.         cout << "You see a note....\n" << endl;
  62.         Sleep(1200);
  63.         cout << "The combination is the amount of stars on the american flag.\n" << endl;
  64.         Sleep(1200);
  65.  
  66.         cout << "Press 1 to go up and 2 to go down" << endl;
  67.  
  68.         cin >> stairs;
  69.  
  70.     }
  71.     else if (girl == 3){
  72.         system("CLS");
  73.         cout << "So you choose to not eat the girl...\n" << endl;
  74.         Sleep(1200);
  75.  
  76.         cout << "You died from hunger sorry...\n" << endl;
  77.         Sleep(1200);
  78.  
  79.         cout << "Oh and by the way she feel down stairs and died anyway.\n" << endl;
  80.     }if (stairs == 1){
  81.         system("CLS");
  82.         cout << "You start walking up the stairs and you hear a faint cracking noise...\n" << endl;
  83.         Sleep(700);
  84.         cout << "Clank" << endl;
  85.         Sleep(700);
  86.         cout << "Clonk" << endl;
  87.         Sleep(700);
  88.         cout << "Clink?" << endl;
  89.         Sleep(700);
  90.         cout << "You have fallen down into a cellar\n" << endl;
  91.         Sleep(1200);
  92.         cout << "You see a door but it has a combination Lock.\n" << endl;
  93.         Sleep(1200);
  94.         cout << "There are some stairs that head down...But a beware sign is on it...\n" << endl;
  95.         Sleep(1200);
  96.         cout << "Press 1 to try to get the correct door combination\n" << endl;
  97.         Sleep(1200);
  98.         cout << "or 2 to go down the stairs BUT BEWARE\n" << endl;
  99.        
  100.         cin >> option;
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.     }if (option == 1){
  110.         cin >> Door;
  111.  
  112.  
  113.     }
  114.     else{
  115.         cout << "You died it said warning...." << endl;
  116.  
  117.  
  118.     }if (Door == 50){
  119.         if (Door == 50){
  120.             system("CLS");
  121.             cout << "You got the right combination..\n" << endl;
  122.             Sleep(1200);
  123.             cout << "You hear a creeking noise and the door opens\n" << endl;
  124.             Sleep(1200);
  125.             cout << "As you walked threw the door you hear a clicking noise...\n" << endl;
  126.             Sleep(1200);
  127.             cout << "You feel a large pain in the back of your head and you feel blooding starting to fall\n" << endl;
  128.             Sleep(1200);
  129.             cout << "You faint...." << endl;
  130.             Sleep(1200);
  131.             cout << "You wake up on a table and hear a drilling noise.." << endl;
  132.             Sleep(1200);
  133.             cout << "You see a man with a drill he is whispering DIE DIE DIE!!!!" << endl;
  134.             Sleep(1200);
  135.             cout << "Just as he is about to drill into your head you....WAKE UP!!!!!! JOHNNY" << endl;
  136.             Sleep(1200);
  137.             cout << "The END?" << endl;
  138.  
  139.  
  140.         }
  141.     }
  142. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement