Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Release] Simple C++ launcher

Newbie Spellweaver
Joined
Aug 1, 2004
Messages
84
Reaction score
0
Well, i had nothing to do so i made a little simple launcher, and it's safe.
This is the source of the launcher!, you need a C++ compiler to compile this.
For a free C++ compiler download Dev-C++ (google it).
Ok here it is.
PHP:
#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 masterG's Server\n";
Sleep(1000); //so it's looks kinda professional :P
cout <<"\n";
cout <<"Launching MU please wait...\n"; // fake loading
Sleep(1500);
STARTUPINFO si;
PROCESS_INFORMATION pi;
ZeroMemory( &si, sizeof(si));
si.cb = sizeof(si);
ZeroMemory( &pi, sizeof(pi));
CreateProcess( NULL, "main.exe connect /u127.0.0.1 /p44405", NULL, NULL, FALSE, 0,NULL, NULL, &si, &pi ); //the real thing, change 127.0.0.1 to you're ip and port 44405 to yours (optional)
return 0;
** //change the "**"
At the end change the ** to
change 127.0.0.1 to you're ip, and the port of you're server.
after the file is compiled put it in you're Mu folder and run it :D
If you wanna ad a icon on the file do this... Add a resource file and type 1 ICON "X:\icon.ico " (where y
ou're icon files is located);
 
Last edited:
Newbie Spellweaver
Joined
Aug 1, 2004
Messages
84
Reaction score
0
Kaoii said:
next time put [Release] in your thread title.
i edited it for you this time, next time i'll delete your thread.
sorry dude
 
Custom Title Activated
Loyal Member
Joined
May 26, 2005
Messages
1,042
Reaction score
6
very nice
Btw? haven't teseted it yet :eh:
 
Divine Celestial
Loyal Member
Joined
Jul 8, 2005
Messages
888
Reaction score
20
its not that im a noob or anything xD but what does this do xD? a launcher? there are lots of launchers. plz explain wtf this is xD (i'm not a noob, i'm just stupid =P)
 
Custom Title Activated
Loyal Member
Joined
May 26, 2005
Messages
1,042
Reaction score
6
LoLz
xD
yes this going to make a simple launcher
 
Newbie Spellweaver
Joined
Aug 1, 2004
Messages
84
Reaction score
0
Bl00d@ng3l said:
LoLz
xD
yes this going to make a simple launcher
thanx for anwsering him :D ,

yes this is a launcher it let's you connect to a server :D
 
Divine Celestial
Loyal Member
Joined
Jul 8, 2005
Messages
888
Reaction score
20
and what's the difference from regular launchers?
 
Custom Title Activated
Loyal Member
Joined
May 26, 2005
Messages
1,042
Reaction score
6
it starts instantly
changeable icon from all sources
a text which says "launching muonline"(or smthing)
it's ok ar all
 
Last edited:
Newbie Spellweaver
Joined
Jan 12, 2005
Messages
22
Reaction score
0
damn nice :)
simple, and it's c++, love it :)
 
Newbie Spellweaver
Joined
Jul 1, 2005
Messages
6
Reaction score
0
Good Launcher Easy to Make

u can look here :
 
Last edited:
Custom Title Activated
Loyal Member
Joined
May 26, 2005
Messages
1,042
Reaction score
6
:chair::chair:
btw? i said too simple for me :chair::chair:
 
Back
Top