#include <iostream>
#include <windows.h>
using namespace std;
//This File and the code contained here in is propterty of 'masterG'
//Copyright (C) 2005
//you may modify this file and or change the name and code content.
int main()
{
cout << "Welcome to xxx MuOnline Server\n";
Sleep(1000); //so it's looks kinda professional :P
cout <<"\n";
cout <<"Loading [ANTIHACK]... "; // fake loading
Sleep(1500);
cout << "DONE!\n";
cout << "Launching [main]... ";
Sleep(1000);
cout << "DONE!\n\nLOADING";
for(int x=0; x<5; x++){
Sleep(1000);
cout << ".";
}
STARTUPINFO si;
PROCESS_INFORMATION pi;
ZeroMemory( &si, sizeof(si));
si.cb = sizeof(si);
ZeroMemory( &pi, sizeof(pi));
CreateProcess( NULL, "main.exe", NULL, NULL, FALSE, 0,NULL, NULL, &si, &pi );
return 0;
}