This repository has been archived by the owner on Jul 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run.php
115 lines (94 loc) · 3.85 KB
/
run.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<?php
require_once("vendor/autoload.php");
use DigitalStars\SimpleVK\LongPoll;
use jarne\querylibrary\QueryLibrary;
const TOKEN = "vk1.a.zoor9LmMwtSL_6kGopnVSygt_geT0z1SrJg36N7GoBUQm37HmieigSetEZxifuHl7znT5nFO8Ub62NYv8zZEl1fDjdvmu95-ec_87hEA3Cf4cy9mGGXi_U8LWomJMAxe3Cs63fkkR8UPpoKQb-RSLILhu6KBtQrfudIpOfoOO3B8-9WOlIOMkTFaweNSTcmuU8q4pozhLd5PrilPELmebQ";
const ID = 497129990;
$vk = LongPoll::create(TOKEN, '5.120');
$vk->setUserLogError(ID);
function clean(string $string, bool $removeFormat = true) : string{
$string = preg_replace("/[\x{E000}-\x{F8FF}]/u", "", $string);
if($removeFormat){
$string = str_replace("\xc2\xa7", "", preg_replace("/" . "\xc2\xa7" . "[0-9a-gk-or]/u", "", $string));
}
return str_replace("\x1b", "", preg_replace("/\x1b[\\(\\][[0-9;\\[\\(]+[Bm]/u", "", $string));
}
$vk->listen(function() use ($vk){
$data = $vk->initVars($peer_id, $user_id, $type, $message);
if($type == "message_new"){
if($peer_id >= 2000000000){
return;
}
$args = explode(" ", $message);
$command = strtolower(array_shift($args));
switch($command){
case "java":
case "je":
case "j":
if(!isset($args[0])){
$vk->reply("❌ Укажите адрес сервера");
return;
}
$address = $args[0];
$port = 25565;
if(isset($args[1])){
$port = $args[1];
}
if(!is_numeric($port)){
$vk->reply("❌ Порт должен быть числом");
return;
}
$result = json_decode(file_get_contents("https://api.mcsrvstat.us/2/{$address}:{$port}"));
if(!$result->debug->ping){
$vk->reply("❌ Сервер недоступен или у него отключен Query");
return;
}
$vk->reply(implode("\n", [
"ℹ Адрес — {$result->ip}, порт — {$result->port}",
"⭐ MOTD — " . $result->motd->clean[0],
"⚔ Версия — {$result->version}",
"👥 Игроки — {$result->players->online} из {$result->players->max}",
"📄 Протокол — {$result->protocol}"
]));
break;
case "bedrock":
case "be":
case "b":
if(!isset($args[0])){
$vk->reply("❌ Укажите адрес сервера");
return;
}
$address = $args[0];
$port = 19132;
if(isset($args[1])){
$port = $args[1];
}
if(!is_numeric($port)){
$vk->reply("❌ Порт должен быть числом");
return;
}
$queryLib = new QueryLibrary();
$result = $queryLib->fetch($address, $port);
if(!$result->isStatus()){
$vk->reply("❌ Сервер недоступен или у него отключен Query");
return;
}
$vk->reply(implode("\n", [
"ℹ Адрес — " . gethostbyname($address) . ", порт — {$result->getPort()}",
"⭐ MOTD — " . clean($result->getMotd()),
"⚔ Версия — {$result->getVersion()}",
"🏐 Ядро сервера — {$result->getServerEngine()}",
"📄 Вайт-лист — " . ($result->isWhitelist() ? "включен" : "отключен"),
"👥 Игроки — {$result->getOnlinePlayers()} из {$result->getMaxPlayers()}",
"🗺 Карта (по умолчанию) — {$result->getDefaultLevelName()}",
"💎 Плагины — " . ((empty($result->getPlugins()) ? "скрыты" : $result->getPlugins())),
"",
"🎭 Список игроков (может не совпадать с количеством, если это лобби) —",
implode(", ", $names = $result->getPlayerNames()) . (count($names) > 0) ? " (" . count($names) . ")" : "отсутствуют"
]));
break;
default:
$vk->reply("🔎 Актуальная информация о состоянии сервера Minecraft\n\n🕷️ j <адрес> <порт: 25565> — ᴊᴀᴠᴀ ᴇᴅɪᴛɪᴏɴ\n🐍 b <адрес> <порт: 19132> — ʙᴇᴅʀᴏᴄᴋ ᴇᴅɪᴛɪᴏɴ");
}
}
});