-
Notifications
You must be signed in to change notification settings - Fork 3
/
config.php
50 lines (45 loc) · 1.71 KB
/
config.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
44
45
46
47
48
49
50
<?php
//Let's just suppress rest of the errors for now.
error_reporting( error_reporting() & ~E_NOTICE );
$Title = "Unturned Server Status";
$News = "<a href=\"#\" target=\"_blank\">Status Updates</a>";
/* Google Ads */
$data_ad_enable = false; //Set to true and update the information below. :)
$data_ad_client = "ca-pub-6160285399625488";
$data_ad_slot = "2146448098";
$Status = array(
array(
"ID" => "PvE1",
"Name" => "Russia PvE|Kits|TPA|CallVote|Home|Vault|AirDrop",
"HostName" => "pve1.ut.justplayhere.com",
"Port" => "27015",
"Mode" => "PVE",
//unturned-servers.net API Key
"API" => "",
"Vote1" => "http://unturned-servers.net/server/<ID NUMBER>/vote",
"Vote2" => "http://unturnedsl.com/dedicated/show/<ID NUMBER>"
),
array(
"ID" => "PvP1",
"Name" => "Russia PvE|Kits|TPA|CallVote|Home|Vault|AirDrop",
"HostName" => "pvp1.ut.justplayhere.com",
"Port" => "27015",
"Mode" => "PVP",
//unturned-servers.net API Key
"API" => "",
"Vote1" => "http://unturned-servers.net/server/<ID NUMBER>/vote",
"Vote2" => "http://unturnedsl.com/dedicated/show/<ID NUMBER>"
),
array(
"ID" => "Arena1",
"Name" => "Russia PvE|Kits|TPA|CallVote|Home|Vault|AirDrop",
"HostName" => "arena1.ut.justplayhere.com",
"Port" => "27015",
"Mode" => "ARENA",
//unturned-servers.net API Key
"API" => "",
"Vote1" => "http://unturned-servers.net/server/<ID NUMBER>/vote",
"Vote2" => "http://unturnedsl.com/dedicated/show/<ID NUMBER>"
)
);
?>