<?php
/* This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
$websitename = "TestServerName";
/*
For this next section please enter your Exp,Meso, and Drop rates */
$exp = "1";
$meso = "1";
$drop = "1";
/* For this next section eneter your Client Download, and MS Version */
$cdownload = "";
$version = "";
/* For this next part please enter your MySQL information */
$host['host'] = 'localhost';
$host['user'] = 'root';
$host['password'] = '';
$host['database'] = 'odinms';
$db = mysql_connect($host['host'], $host['user'], $host['password']) OR die ('Cant connect to the database');
mysql_select_db($host['database'], $db);
/* End of script */
?>