-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.minecraft.php
58 lines (51 loc) · 1.57 KB
/
config.minecraft.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
51
52
53
54
55
56
57
58
<?php
/*
baltGro - SMS/PayPal maksājumu sistēmas gatavais risinājums
baltGro ir aplikācija, kura saistās ar baltGro SMS/PayPal un uzturēšanas risinājumiem. Šo aplikācija drīkst izmantot tikai baltgro.lv klienti, kuriem ir vajadzīgie dati, lai aizpildītu konfigurāciju un izveidotu savienojumu
Aplikāciju un tās spraudņus veidoja Miks Zvirbulis
http://twitter.com/MiksZvirbulis
https://twitter.com/mrYtteroy
*/
/*
NEAIZTIKT! AUTOMĀTISKI DEFINĒTAS VĒRTĪBAS!
*/
define("mc_config_present", true);
$mc = array();
require $c['dir'] . "/system/minecraft.class.php";
/*
-----------------------------------------------------
Konfigurāciju rediģēt drīkst pēc šīs līnijas
-----------------------------------------------------
*/
/*
Datubāzes servera adrese, pēc noklusējuma "localhost"
*/
$mc['db']['host'] = "localhost";
/*
Datubāzes pieejas lietotājvārds
*/
$mc['db']['username'] = "";
/*
Datubāzes pieejas parole
*/
$mc['db']['password'] = "";
/*
Datubāzes nosaukums
*/
$mc['db']['database'] = "";
$mc['servers'] = array(
"MyServer" => (object)array(
"title" => "Factions",
"ip_address" => "",
"rcon_port" => 25575,
"rcon_password" => "",
"show" => true
),
);
foreach($mc['servers'] as $type => $data){
$mc['rcon'][$type] = new MinecraftRcon($data->ip_address, $data->rcon_port, $data->rcon_password, 10);
if($mc['rcon'][$type]->connect() === false){
$data->show = false;
echo baltsms::alert("Nav iespējams savienoties ar Minecraft serveri: <strong>" . $type . "</strong>. Pārbaudi pieejas datus!", "danger");
}
}