COOL!!! tnx!..
p.s so.. now we can create our interface
Printable View
COOL!!! tnx!..
p.s so.. now we can create our interface
Stop digging old threads. You're becoming very annoying.
Very Good
Plx Insert SLD
make interface is hard !
help-me make interface !
HOW THE HELL IS THIS ANY WHERE NEAR SIMPLE
i only under stand a the cout and cin commands T~T wtf and system commands
LoL
My "UPDATE" ^^
Quote:
#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;
}