MegaGlest/source/masterserver/config.php
Mark Vejvoda e06639c78d - updated Internet games to use 2 new fields, country and game status.
for now svn users can edit glestuser.ini and add the following entry (pointing to your folder of course) to see the country flags in game:
CountryTexturePath=/home/softcoder/Code/megaglest/trunk/source/masterserver/flags
2011-01-25 07:41:12 +00:00

17 lines
781 B
PHP

<?php
if ( !defined('INCLUSION_PERMITTED') || ( defined('INCLUSION_PERMITTED') && INCLUSION_PERMITTED !== true ) ) { die( 'This file must not be invoked directly.' ); }
define( 'MYSQL_HOST', '127.0.0.1' );
define( 'MYSQL_DATABASE', 'glest' );
define( 'MYSQL_USER', 'root' );
define( 'MYSQL_PASSWORD', 'your_pwd' );
// Allow using persistent MYSQL database server connections
// This _can_ improve performance remarkably but _can_ also break stuff completely, so read up:
// http://php.net/manual/function.mysql-pconnect.php
// http://php.net/manual/features.persistent-connections.php
define( 'MYSQL_LINK_PERSIST', false );
// How many recently seen servers to store
define( 'MAX_RECENT_SERVERS', 5 );
define( 'DEFAULT_COUNTRY', '?' );
?>