27 lines
762 B
PHP
27 lines
762 B
PHP
<?php
|
|
/**
|
|
* Copyright (c) 2018.
|
|
* Author: Igor Barkov <lopar.4ever@gmail.com>
|
|
* Project name: Battles-Game
|
|
*/
|
|
|
|
class nick
|
|
{
|
|
private $id;
|
|
private $invis;
|
|
|
|
function __construct($playerId, $showInvisibility = 1) {
|
|
$this->id = $playerId;
|
|
$this->invis = $showInvisibility;
|
|
}
|
|
|
|
public function login(){
|
|
$user = db::c()->query('SELECT `login`, `level`, `hp`, `align`, `klan`, `hp`, `maxhp` FROM `users` WHERE `id` = ?i',$this->id)->fetch_assoc();
|
|
if ($this->invis){
|
|
// db::c()->query('SELECT `time` FROM `effects` WHERE `owner` = ?i AND `type` = ?i', $id, 1022)->fetch_assoc();
|
|
$user['login'] = 'невидимка';
|
|
$user['level'] = 100;
|
|
}
|
|
return $user;
|
|
}
|
|
} |