1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
| <?php
//Enter the ip of the Gameserver
$gameserverip = "89.84.189.168";
//Enter the Rcon Password of the Server
$gameserverrcon = "*********";
//Enter the Port of the gameserver
$gameserverport = "27015";
//Users per Page
$usersperpage = "50";
//The Number of installation
$installnum = "1";
//The Script Password (Must be the same like in es_tx_stats.txt)
$linkhash = "";
// Enter the IP or domain of your game server's ftp
$serverip = "89.84.189.168";
// Enter the path to your tx_stats directory including a trailing slash (eg. /cstrike/addons/eventscripts/tx_stats/)
$basepath = "/cstrike/addons/eventscripts/tx_stats/";
// Enter the ftp username
$username = "server_css";
// Enter the ftp password
$password = "server_css";
// Enter the ftp port(usually 21)
$port = '21';
//Database Host
$dbHost = "localhost";
//Database User
$dbUser = "mon_user";
//Database Password
$dbPass = "*****";
//Database
$dbName = "tx_stats_db";
?> |