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:
Later u can personalize your own launcher with immage ecc
C++:
Where 127.0.0.1 edit with your IP
For Bat,open a Note Pad file and write:
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
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:
Where 127.0.0.1 edit with your ipCrashinsideLauncherCode said:Private Sub Command1_Click()
Shell ("TRose.exe @TRIGGER_SOFT@ _server 127.0.0.1")
End Sub
Later u can personalize your own launcher with immage ecc
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