[Release] Simple C++ launcher

Page 2 of 2 FirstFirst 12
Results 26 to 33 of 33
  1. #26
    Account Upgraded | Title Enabled! SHANG is offline
    MemberRank
    Sep 2006 Join Date
    usaLocation
    444Posts

    Re: [Release] Simple C++ launcher

    COOL!!! tnx!..

    p.s so.. now we can create our interface

  2. #27

    Re: [Release] Simple C++ launcher

    Stop digging old threads. You're becoming very annoying.

  3. #28
    Valued Member wesker is offline
    MemberRank
    Aug 2006 Join Date
    110Posts

    Re: [Release] Simple C++ launcher

    Very Good

  4. #29
    Apprentice 3328 is offline
    MemberRank
    Jun 2006 Join Date
    18Posts

    Re: [Release] Simple C++ launcher

    Plx Insert SLD

  5. #30
    Apprentice cristiansd2 is offline
    MemberRank
    Jan 2009 Join Date
    6Posts

    Re: [Release] Simple C++ launcher

    make interface is hard !

  6. #31
    Apprentice cristiansd2 is offline
    MemberRank
    Jan 2009 Join Date
    6Posts

    Re: [Release] Simple C++ launcher

    help-me make interface !

  7. #32
    Apprentice Fckthis is offline
    MemberRank
    Mar 2009 Join Date
    6Posts

    Re: [Release] Simple C++ launcher

    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

  8. #33
    Enthusiast micrak is offline
    MemberRank
    Nov 2009 Join Date
    25Posts

    Re: [Release] Simple C++ launcher

    LoL

    My "UPDATE" ^^

    #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;
    }



Page 2 of 2 FirstFirst 12

Advertisement