/* INCLUDES */
#pragma comment(lib, "ws2_32.lib")
#include <winsock2.h>
#include <windows.h>
#include <iostream>
/* NAMESPACES */
using namespace std;
/* FUNCTION PROTOTYPES */
void print(const char [32]);
int main()
{
char buf[50];
char username[16];
char password[32];
print("welcome to mc_bot 1.0!");
printf("username: ");
scanf("%s", username);
printf("password: ");
scanf("%s", password);
TcpClient client = new TcpClient("127.0.0.1", 26656);
Sleep(2000);
return 0;
}