forked from Drumm-/Narna-ClanStats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.inc.php
43 lines (39 loc) · 1.37 KB
/
config.inc.php
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
<?php
/* ===================== Database Settings =====================
* Database from SimpleClans2 (Same values as in your config.yml)
*/
$dbhost = 'localhost';
$dbport = 3306;
$dbuser = 'root';
$dbpass = 'password';
$dbname = 'minecraft';
/* ===================== Website Settings =====================
* $sitelogo <- There you can set your logo. If you haven't one
* just leave it empty.
* $sitename <- This only appears if the $sitelogo variable is
* empty.
*/
$sitelogo = "";
$sitename = "SimpleClansStats2";
/* ======================== Kill Weights ========================
* Can be found arround line 42 in your config.yml.
* Default values already set, no need to change.
*/
$civ = 1.0; // = civilian: 0.5
$neu = 1.0; // = neutral: 1.0
$riv = 2.0; // = rival: 2.0
/* ======================= DynMap Settings =======================
* Here you can set your DynMap URL.
* If you don't need it just leave 'none'.
* May be broken, I haven't tested, as I don't use.
* Contact me if you have issues: [email protected]
*/
$dynmap = 'none'; //Example: '92.51.171.14:8123'
/* ====== End of Configuration (DO NOT EDIT BELOW THIS LINE) ====== */
@$db = new mysqli($dbhost, $dbuser, $dbpass, $dbname, $dbport);
if ($db->connect_errno) {
echo $db->connect_error;
exit();
}
$db->set_charset("UTF8");
?>