Guest User

Untitled

a guest
Jul 20th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.80 KB | None | 0 0
  1. //This code was NOT written by Cazum. it is bad code, and I feel bad for having written it.
  2. //Therefore, I am sending the blame over to Markus Persons (aka, Notch)
  3. //Notch will take any questions and give any and all support regarding this ungodly mess that somehow passes through a compiler.
  4. //Sorry.
  5. //*Released under the GPL v3*
  6. //I'm just kidding, there is no license.
  7.  
  8. #include <string>
  9. #include <iostream>
  10. #include <windows.h> //lol easy timers
  11. using namespace std;
  12. void typeout(string words, int speed, boolean con); //why do I even need this. Fucking c++.
  13.  
  14. int main() {
  15. typeout("***********************************************************",20,true);
  16. typeout("************TeaM*******************************************",40,true);
  17. typeout("************************************M4yL1ghT***************",40,true);
  18. typeout("***********************************************************",20,true);
  19. typeout("**********************PRESENTS:****************************",40,true);
  20. typeout("***********************************************************",20,true);
  21. typeout(" ",1000,true);//wait
  22. system("CLS"); //clear the goddamn screen!
  23. typeout("d8888b. .d8b. d8888b. d88888b",20,true);
  24. typeout("88 `8D d8' `8b 88 `8D 88' ",20,true);
  25. typeout("88oobY' 88ooo88 88oodD' 88ooooo",20,true);
  26. typeout("88`8b 88 88 88 88 ",20,true);
  27. typeout("88 `88. 88 88 88 88. ",20,true);
  28. typeout("88 YD YP YP 88 Y88888P",20,true);
  29. typeout(" ",20,true);
  30. typeout("db .d88b. .d8b. d8888b. d88888b d8888b.",20,true);
  31. typeout("88 .8P Y8. d8' `8b 88 `8D 88' 88 `8D",20,true);
  32. typeout("88 88 88 88ooo88 88 88 88ooooo 88oobY'",20,true);
  33. typeout("88 88 88 88~~~88 88 88 88~~~~~ 88`8b ",20,true);
  34. typeout("88booo. `8b d8' 88 88 88 .8D 88. 88 `88.",20,true);
  35. typeout("Y88888P `Y88P' YP YP Y8888D' Y88888P 88 YD",20,true);
  36. typeout(" ",1000, true);//wait
  37. system("CLS");
  38. typeout("Disabling security measures:", 35,true);
  39. typeout("[||||||||||||||||||||||||||||||||||||||||]", 20,false);
  40. typeout("Quieting process from other security measures...", 35,true);
  41. typeout("....................", 10,false);
  42. typeout("Installing backdoor into explorer.exe...", 35,true);
  43. typeout("[||||||||||||||||||||||||||||||||||||||||]", 90,false);
  44. typeout("Injecting Team M4yL1ghT code into windows startup routine...", 35,true);
  45. typeout("[||||||||||||||||||||||||||||||||||||||||]", 120,false);
  46. typeout("Timing out windows security checks...", 35,true);
  47. typeout("....................", 20,false);
  48. typeout("Requesting port access...", 35,true);
  49. typeout("[||||||||||||||||||||||||||||||||||||||||]", 250,false);
  50. typeout("Success!", 10,true);
  51. typeout(" ",2000,true);
  52. system("CLS");
  53. typeout("Obtaining remote access", 35,true);
  54. typeout("[||||||||||||||||||||||||||||||||||||||||]", 40,false);
  55. typeout(" ",2000,true);
  56. system("CLS");
  57. typeout("***********************************************************",20,true);
  58. typeout("***********************************************************",20,true);
  59. typeout("**************Your system has been comprimised*************",50,true);
  60. typeout("****************Don't turn off your computer!**************",50,true);
  61. typeout("************************Bye for now!***********************",50,true);
  62. typeout("***********************************************************",20,true);
  63. typeout("***********************************************************",20,true);
  64. system("pause");
  65. return 0;
  66. }
  67.  
  68. void typeout(string words, int speed, boolean con)
  69. {
  70. int num;
  71. for (unsigned int x = 0; x < words.length(); x++)
  72. {
  73. cout << words[x];
  74. if(con==false){num = rand() % 350 + 1;}//create a "speed bump" in the timer, creating a more realistic processing feel.
  75. if(con==true){num = 0;}
  76. Sleep(speed + num);
  77. }
  78. cout << "\n";//new line after each call of typeout()
  79. }
Add Comment
Please, Sign In to add comment