Advertisement
Guest User

Untitled

a guest
Mar 6th, 2014
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.54 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.     cout << "If you want to play this rapist game press 1" << endl;
  10.     cin >> start;
  11.  
  12.  
  13.     if (start == 1){
  14.         system("CLS");
  15.         cout << "You are in a dark scuury building"                  "\n" << endl;
  16.         Sleep(1200);
  17.         cout << "There was this little girl named justin"            "\n" << endl;
  18.         Sleep(1200);
  19.         cout << "You are going to die from hunger..."                "\n" << endl;
  20.         Sleep(1200);
  21.         cout << "Do you eat the little girl?"                        "\n" << endl;
  22.         Sleep(1200);
  23.         cout << "By the way your name is jake. "                     "\n" << endl;
  24.         Sleep(1200);
  25.         cout << "Press 2 to eat the little girl or 3 to keep going." "\n" << endl;
  26.         cin >> girl;
  27.     }
  28.     else{
  29.         cout << "Faggot Play the rapist game!"                       << endl;
  30.         return 0;
  31.     }
  32.     system("CLS");
  33.     if (girl == 2){
  34.        
  35.         cout << "You at the girl you cruel bastard but atleast you didnt die...\n"<< endl;
  36.         Sleep(1200);
  37.         cout << "You start feeling sick...\n"                                     << endl;
  38.         Sleep(1200);
  39.         cout << "The girl had a fatal disease and now you have it...\n"           << endl;
  40.         Sleep(1200);
  41.         cout << "but its cureable\n"                                              << endl;
  42.         Sleep(1200);
  43.         cout << "Start looking for the medicine before you die"                   << endl;
  44.     }
  45.     else if (girl == 3){
  46.         cout << "So you choose to not eat the girl...\n"                          << endl;
  47.         Sleep(1200);
  48.         cout << "You died from hunger sorry...\n"                                 << endl;
  49.         Sleep(1200);
  50.         cout << "Oh and by the way she feel down stairs and died anyway.\n"       << endl;
  51.     }
  52.    
  53.    
  54.  
  55.  
  56.  
  57.  
  58. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement