Advertisement
Guest User

Untitled

a guest
Jan 17th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.85 KB | None | 0 0
  1. //Keys
  2. if (GetAsyncKeyState(VK_F1))
  3. {
  4. Sleep(75);
  5. Settings::Esp::esp_Enemy = !Settings::Esp::esp_Enemy;
  6. Settings::Esp::esp_Team = !Settings::Esp::esp_Team;
  7. }
  8. if (GetAsyncKeyState(VK_F2))
  9. {
  10. Sleep(75);
  11. Settings::Misc::misc_AutoStrafe = !Settings::Misc::misc_AutoStrafe;
  12. }
  13. if (GetAsyncKeyState(VK_F3))
  14. {
  15. Sleep(75);
  16. Settings::Misc::misc_Bhop = !Settings::Misc::misc_Bhop;
  17. }
  18. if (GetAsyncKeyState(VK_F4))
  19. {
  20. Sleep(75);
  21. Settings::Misc::misc_Spectators = !Settings::Misc::misc_Spectators;
  22. }
  23. if (GetAsyncKeyState(VK_F6))
  24. {
  25. Sleep(75);
  26. Settings::Aimbot::aim_Backtrack = !Settings::Aimbot::aim_Backtrack;
  27. }
  28. if (GetAsyncKeyState(VK_NUMPAD1))
  29. {
  30. Sleep(75);
  31. Settings::LoadSettings("C:/Config/legitprime.ini");
  32. }
  33. if (GetAsyncKeyState(VK_NUMPAD2))
  34. {
  35. Sleep(75);
  36. Settings::LoadSettings("C:/Config/cfg2.ini");
  37. }
  38. if (GetAsyncKeyState(VK_NUMPAD3))
  39. {
  40. Sleep(75);
  41. Settings::LoadSettings("C:/Config/cfg3.ini");
  42. }
  43. if (GetAsyncKeyState(VK_NUMPAD4))
  44. {
  45. Sleep(75);
  46. Settings::SaveSettings("C:/Config/cfg1.ini");
  47. }
  48. if (GetAsyncKeyState(VK_NUMPAD5))
  49. {
  50. Sleep(75);
  51. Settings::SaveSettings("C:/Config/cfg2.ini");
  52. }
  53. if (GetAsyncKeyState(VK_NUMPAD6))
  54. {
  55. Sleep(75);
  56. Settings::SaveSettings("C:/Config/cfg3.ini");
  57. }
  58.  
  59. g_pRender->Text(320, 15, false, true, Color::Yellow(), "Bem vindo F1ash");
  60. g_pRender->Text(320, 30, false, true, Color::Yellow(), "Bem vindo Frrrrrrrrrrk");
  61. g_pRender->Text(320, 45, false, true, Color::Yellow(), "Bem vindo Th");
  62. g_pRender->Text(320, 60, false, true, Color::Yellow(), "Bem vindo Amigo do Th");
  63. g_pRender->Text(10, 47, false, true, Color::Yellow(), "Para dar LOAD NA CFG pressione NumPad1");
  64.  
  65. g_pRender->Text(320, 75, false, true, Color::White(), "ESP (F1)");
  66. if (Settings::Esp::esp_Enemy || Settings::Esp::esp_Team)
  67. {
  68. if (Settings::Esp::esp_Enemy && !Settings::Esp::esp_Team)
  69. g_pRender->Text(450, 75, false, true, Color::Red(), "ON | ENEMY ONLY");
  70. if (Settings::Esp::esp_Team && !Settings::Esp::esp_Enemy)
  71. g_pRender->Text(450, 75, false, true, Color::Red(), "ON | TEAM ONLY");
  72. if (Settings::Esp::esp_Team && Settings::Esp::esp_Enemy)
  73. g_pRender->Text(450, 75, false, true, Color::Red(), "ON | BOTH TEAMS");
  74. }
  75. else
  76. {
  77. g_pRender->Text(450, 75, false, true, Color::White(), "OFF");
  78. }
  79. g_pRender->Text(320, 90, false, true, Color::White(), "Fake AA Legit (F2)");
  80. if (Settings::Misc::misc_AutoStrafe)
  81. {
  82. g_pRender->Text(450, 90, false, true, Color::Red(), "ON");
  83. }
  84. else
  85. {
  86. g_pRender->Text(450, 90, false, true, Color::White(), "OFF");
  87. }
  88. g_pRender->Text(320, 105, false, true, Color::White(), "AUTO BHOP (F3)");
  89. if (Settings::Misc::misc_Bhop)
  90. {
  91. g_pRender->Text(450, 105, false, true, Color::Red(), "ON");
  92. }
  93. else
  94. {
  95. g_pRender->Text(450, 105, false, true, Color::White(), "OFF");
  96. }
  97. g_pRender->Text(320, 120, false, true, Color::White(), "SPECTATORS (F4)");
  98. if (Settings::Misc::misc_Spectators)
  99. {
  100. g_pRender->Text(450, 120, false, true, Color::Red(), "ON");
  101. }
  102. else
  103. {
  104. g_pRender->Text(450, 120, false, true, Color::White(), "OFF");
  105. }
  106. g_pRender->Text(320, 135, false, true, Color::White(), "BACKTRACKING (F6)");
  107. if (Settings::Aimbot::aim_Backtrack)
  108. {
  109. g_pRender->Text(450, 135, false, true, Color::Red(), "ON");
  110. }
  111. else
  112. {
  113. g_pRender->Text(450, 135, false, true, Color::White(), "OFF");
  114. }
  115. }
  116.  
  117.  
  118. if (Settings::Esp::esp_Time)
  119. g_pRender->Text(15, 30, false, true, Color::White(), std::asctime(std::localtime(&result)));
  120.  
  121. g_pRender->EndRender();
  122. }
  123. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement