Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // NightmareFuelCanYouSurvive.cpp : Defines the entry point for the console application.
- #include "stdafx.h"
- #include <iostream>
- #if defined(__WIN32__) || defined(_WIN32) || defined(WIN32) || defined(__WINDOWS__) || defined(__TOS_WIN__)
- #include <windows.h>
- inline void delay(unsigned long ms)
- {
- Sleep(ms);
- }
- #else /* presume POSIX */
- #include <unistd.h>
- inline void delay(unsigned long ms)
- {
- usleep(ms * 1000);
- }
- #endif
- using namespace std;
- #include <cstdlib>
- void clear_screen()
- {
- #ifdef _WIN32
- std::system("cls");
- #else
- // Assume POSIX
- std::system("clear");
- #endif
- }
- void main()
- {
- delay(7500);
- printf("Please wait..\n");
- delay(12060);
- printf("Press the enter key to start the game.");
- cin.ignore();
- delay(3000);
- clear_screen();
- printf("WELCOME TO NIGHTMARE FUEL HERE IS HOW YOU PLAY AND WHAT TO BE CAREFUL OF\n\n");
- printf("1. To play you must have a stable mind, with no huge tragedies in recent memory. If you do, it is advised that you do not start the game\n\n");
- printf("2. It is advised that you have had some experience with lucid dreaming, or at least know how to have one.\n\n");
- printf("3. It is advised that you only play if you have no physical injuries.\n\n");
- printf("4. It is advised that you do not play if you are on any psychedelic drugs or medication.\n\n");
- printf("5. It is advised that you do not play if you have any illnesses; either physical or mental.\n\n");
- printf("6. Although this may sound crazy, you MUST set an alarm for exactly 3:00 am with a song you recognize. The time of this matters less and is more important to have it sound just short of the time your normal sleep cycle ends. Don't try and undercut the time either to shorten the challenge - or the game will know.\n\n");
- printf("7. Wait for the game to begin.\n\n");
- printf("PRESS ENTER ONCE YOU HAVE COMPLETELY READ THE INSTRUCTIONS AND PRECAUTIONS.\n");
- cin.ignore();
- // magicka payload here, if it existed
- delay(12706);
- clear_screen();
- printf("enjoy the game.. and good luck.");
- delay(6840);
- exit(0);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement