How to make a simple Launcher (VB6/C++/BAT)

Status
Not open for further replies.
Experienced Elementalist
Joined
Jun 29, 2006
Messages
255
Reaction score
0
Hello Guys!
In this topic i ask u how to make a simple Launcher (BASE CODE)

VB6:

Make a Command Button for enter in your server (START GAME)
Exemple of code:
CrashinsideLauncherCode said:
Private Sub Command1_Click()
Shell ("TRose.exe @TRIGGER_SOFT@ _server 127.0.0.1")
End Sub
Where 127.0.0.1 edit with your ip

Later u can personalize your own launcher with immage ecc :p

C++:

CrashinsideLauncherCode said:
#include <iostream>

using namespace std;

int main()
{
system("color 0A");
system("TRose.exe @TRIGGER_SOFT@ _server 5.101.181.7");
cout << "Press a Key for start play to NAME OF YOUR SERVER" << endl;
system("PAUSE>null");
system("TRose.exe @TRIGGER_SOFT@ _server 127.0.0.1");
}

Where 127.0.0.1 edit with your IP

For Bat,open a Note Pad file and write:

CrashinsideLauncherCode said:
TRose.exe @TRIGGER_SOFT@ _server 127.0.0.1

Where 127.0.0.1 edit with your IP!
Next you can personalize your launcher,this is only BASE CODE for start game :)

Bye at all :D
 
Elite Diviner
Joined
Feb 14, 2006
Messages
407
Reaction score
7
Thx crashinside. It's a good guide.
 
Elite Diviner
Joined
Aug 12, 2006
Messages
412
Reaction score
0
i'll release my old updateable launcher if you guys want, coded in vC#, it does not update to VFS tho, it's like sevenhearts launcher since i've coded a new one in vC++ whcih is able to update to vfs and no it's not neoncube.
 
Initiate Mage
Joined
May 30, 2008
Messages
2
Reaction score
0
i have a question:
how to make your launcher (that u created in VB 6) an .exe?
Thank you for helping.
 
Status
Not open for further replies.
Back
Top