Hello...
New version 1.0 :
- Remove last parameters button
- Remove ping display (too many errors)
-
Add public managment mode.
-
All parameters are stored in an XML file now.
- Add more comments in the code.
Download :
http://games.alex-box.net/aws-wrd-rcon- ... hargement/Set your Server managing to PUBLIC
With the 1.0 version, AW’s WRD Rcon can switch betwin two modes : Public and private. Public mode allow make a servers list that you want share. To set your AW’s WRD Rcon Public mode, in ini.php file, set the $AWRcon_is_public variable to true and fill the $liste_serveurs array with your servers infos :
‘Nom’ : Name of your server. This value set the server name in game lobby too.
‘URL’ : WEB address to join the server admin.
‘IP’ : IP of your dedied server (+ip)
‘Port’ : Port to join the server by Rcon. This port is same you put in line command to start your Wargame server. (+rcon_port)
‘MdP’ : Password to connect by Rcon. This value is same you put in line command to start your Wargame Server. (+rcon_password)
Code: Select all
public function liste_serveurs(){
$liste_serveurs = array();
$liste_serveurs[] = ['Nom' => 'Serveur Wargame #1','URL' => 'http://localhost/WargameServer',
'IP' => '50.253.174.28', 'Port' => '1977', 'MdP' => 'pswtest'];
$liste_serveurs[] = ['Nom' => 'Serveur Wargame #2','URL' => 'http://sub-domain.domain.com',
'IP' => '50.253.174.28', 'Port' => '1978', 'MdP' => 'pswtest2'];
$liste_serveurs[] = ['Nom' => 'Tanks Fight','URL' => 'http://sub-domain-2.domain.com',
'IP' => '50.253.174.28', 'Port' => '1979', 'MdP' => 'pswtest'];
return $liste_serveurs;
}
http://games.alex-box.net/aws-wrd-rcon- ... me-server/http://games.alex-box.net/wp-content/up ... ccueil.png