This file describes how Crazy Mita processes data acquired on servers. Crazy Mita gathers, stores and processes information sent to it with commands, forms, intents and any other form of communication. Any information received by the bot is referred to as user data. For example, issuing a warn to a user stores information such as issuer account id, target account id, issue/expiration date and the reason inputted in the command / form which is needed to display the history of warns. User data is stored only for as long as needed to maintain the bot's functionality. Currently, the maximum amount of time any user data is stored in the bot is 30 days after a punishment or action has expired. Some information may be stored for less amount of time, if it's not necessary to keep it for that long. Crazy Mita also processes information such as member join events or messages and their contents, however this type of sensitive user data is not stored in the bot and is discarded as soon as processing of that information i
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <conio.h> | |
#include <windows.h> | |
#include <cstring> | |
using namespace std; | |
/* run this program using the console pauser or add your own getch, system("pause") or input loop */ | |
int main(int argc, char** argv) { | |
bool firstRun = true; |