- Tham gia
- 04/08/2017
- Bài viết
- 806
đơn giản là lấy mã UUID người chơi, kể cả chế độ offline
uuid.php



uuid.php
PHP:
<head><title>lấy thông tin người chơi</title></head>
<form action="" method="post">
<h3>Lưu ý tên có phân biệt hoa / thường</h3>
<p>Tên nhân vật: <input type="text" name="name" /></p>
<p><button name="submit" type="submit" value="get">Tìm kiếm</button></p>
</form>
<?php
if(isset($_POST['submit'])) {
$name = $_POST['name'];
$content = file_get_contents("http://tools.glowingmines.eu/convertor/nick/$name");
$uuid_info = json_decode($content);
// Làm gì với cái UUID cũng được
$uuid = $uuid_info->offlineuuid;
//data ở đây
echo "UUID của bạn <b>$uuid</b>";
echo "<p></p>";
echo "Nick của bạn <b>$uuid_info->nick</b>";
}
?>








