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 | OpenSource ] RaiderZ Server's States Launcher ! ! !

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 .

:blushing:
Language used Here is C# Programming language .

ScreenShots :
Alaa Ben Fatma - [ Release | OpenSource ] RaiderZ Server's States Launcher ! ! ! - RaGEZONE Forums



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 :eek:tt1:

1 • Import my library (RaiderZ Server States checker.dll) using this code :
PHP:
using RaiderZ_Server_State;
2 • Write this code :
PHP:
RaiderZ_Server_State.Check ServerState = new RaiderZ_Server_State.Check();
3 • into Form_Load Event add this code :
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;
            }
The Comments will guide you :p:

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 :laugh:
Thanks to :

Mahdi
Mayma

Created By Alaa Ben Fatma :lol:
 
Newbie Spellweaver
Joined
Jun 26, 2014
Messages
9
Reaction score
1
gj m8 ... but what about patch system! ? plz make it too and thx alot :laugh:
 
Newbie Spellweaver
Joined
Jan 6, 2015
Messages
10
Reaction score
2
I already have it on my pc :p
even so you know that i've never played raiderZ before lol , i'll post it someday maybe :laugh:
 
Back
Top