Newbie Spellweaver
- Joined
- Jan 6, 2015
- Messages
- 10
- Reaction score
- 2
Hello guys , like the Title descibes , i will post a small Launcher Project which can check your server states :
Auth & Game .
Language used Here is C# Programming language .
ScreenShots :
Library used : RaiderZ Server States checker.dll
( Created by me ) .
Tutorial :
If you are wondering about the way that you will follow to make this launcher able to detect your server's states then you have to follow this short tuto tt1:
1 • Import my library (RaiderZ Server States checker.dll) using this code :
2 • Write this code :
3 • into Form_Load Event add this code :
The Comments will guide you :
4 • Press F5 to debug your launcher ^_^ .
Video :
[video=youtube;ojBxvzhVvys]https://www.youtube.com/watch?feature=player_detailpage&v=ojBxvzhVvys[/video]
Download Link :
Have fun
Thanks to :
Mahdi
Mayma
Created By Alaa Ben Fatma
Auth & Game .
Language used Here is C# Programming language .
ScreenShots :
Library used : RaiderZ Server States checker.dll
( Created by me ) .
Tutorial :
If you are wondering about the way that you will follow to make this launcher able to detect your server's states then you have to follow this short tuto tt1:
1 • Import my library (RaiderZ Server States checker.dll) using this code :
PHP:
using RaiderZ_Server_State;
PHP:
RaiderZ_Server_State.Check ServerState = new RaiderZ_Server_State.Check();
PHP:
ServerState.Port = 80; // Your Auth IP
ServerState.IP = "127.0.0.1"; // Your IP
ServerState.GamePort = 80; // Your Game IP
ServerState.state();
if (ServerState.gameState == "Online")
{
this.game.ForeColor = Color.Green;
this.game.Text = ServerState.gameState;
}
else
{
this.game.ForeColor = Color.Red;
this.game.Text = ServerState.gameState;
}
if (ServerState.authState == "Online")
{
this.authState.ForeColor = Color.Green;
this.authState.Text = ServerState.authState;
}
else
{
this.authState.ForeColor = Color.Red;
this.authState.Text = ServerState.authState;
}
4 • Press F5 to debug your launcher ^_^ .
Video :
[video=youtube;ojBxvzhVvys]https://www.youtube.com/watch?feature=player_detailpage&v=ojBxvzhVvys[/video]
Download Link :
To view the content, you need to sign in or register
Have fun
Thanks to :
Mahdi
Mayma
Created By Alaa Ben Fatma