-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathconfig.php
More file actions
57 lines (52 loc) · 1.53 KB
/
config.php
File metadata and controls
57 lines (52 loc) · 1.53 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
<?php
/**
* Turn on for debugging. Will print possible errors on your page.
*/
ini_set("display_errors", 0);
ini_set("track_errors", 0);
ini_set("html_errors", 0);
error_reporting(E_ERROR); # E_ALL || E_ERROR
/**
* Servers to query. Will show avatars of connected players on the right side.
* Set status 'false' if you don't want playercounts on the left side.
*
* port is the port to ping for basic information like online-status and online-players.
* query_port is the port to query for advanced information like connected players etc.
* query_port can be the same as port (lookup server.properties).
*/
$servers = array(
'Skyblock' => array(
'ip' => 'sky.freecraft.eu',
'port' => '25555',
'query_port' => '25555',
'status' => true
),
'Survival' => array(
'ip' => 's.freecraft.eu',
'port' => '25566',
'query_port' => '25566',
'status' => true
),
'Creative' => array(
'ip' => 's.freecraft.eu',
'port' => '25559',
'query_port' => '25559',
'status' => true
)
);
/**
* Bungee server to ping and show information on the left side. Can be the same as one of the servers defined above.
* Needed to get the favicon, motd, players online/max and version.
*/
$bungee = array(
'ip' => 'lobby.freecraft.eu',
'port' => '25565'
);
/**
* Settings
*/
$SHOW_FAVICON = true; # Show the favicon? - true, false
$TITLE = "FreeCraft";
$TITLE_LEFT = "General Information";
$TITLE_LEFT_DOWN = "Server Information";
$TITLE_RIGHT = "Players";