-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSimpleSSTool.cpp
More file actions
28 lines (21 loc) · 845 Bytes
/
SimpleSSTool.cpp
File metadata and controls
28 lines (21 loc) · 845 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#include <iostream>
#include <windows.h>
#include <cstdlib>
#include <chrono>
#include <thread>
#include "Logger/Logger.h"
#include "Checks/Check.h"
int main() {
/*
Made by dabrovic
Have fun using it (it's most likley going to be shit)
*/
using namespace std::this_thread;
using namespace std::chrono_literals;
const auto h_console = GetStdHandle(STD_OUTPUT_HANDLE); // Setting the variables up
SetConsoleTextAttribute(h_console, 2);
printf("Welcome to SimpleSSTool!\nThis isn't the best SS tool and is made for fun.\nMost of the checks are trash and the whole program is just a base for an another project.\nThe program is going to start in a few seconds...\n \n-dabrovic");
sleep_for(2s);
start_checks(); // GOTO CheckThread filter to edit the order of the operations
return 0;
}