This repository has been archived on 2019-05-05. You can view files and clone it, but cannot push or open issues or pull requests.
Server-v1/getstats.php

19 lines
395 B
PHP
Raw Normal View History

2016-07-04 00:51:42 -06:00
<?php
require 'required.php';
require 'onlyloggedin.php';
2016-07-04 00:51:42 -06:00
if (is_empty($VARS['user'])) {
sendError("Missing data.", true);
}
$stats = $database->select('players', ['level', 'energy', 'maxenergy', 'teamid', 'lastping'], ['nickname' => $VARS['user']])[0];
2016-07-04 00:51:42 -06:00
$out = [];
$out['status'] = 'OK';
$out['stats'] = $stats;
$out['stats']['lastping'] = 0;
2016-10-11 01:20:32 -06:00
echo json_encode($out);