2020-07-03 13:23:08 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
|
|
class User
|
|
|
|
{
|
|
|
|
public $id;
|
|
|
|
public $login;
|
|
|
|
public $email;
|
|
|
|
public $realname;
|
|
|
|
public $borndate;
|
|
|
|
public $info;
|
|
|
|
public $level;
|
|
|
|
public $align;
|
|
|
|
public $clan;
|
|
|
|
public $money;
|
|
|
|
public $strength;
|
|
|
|
public $dexterity;
|
|
|
|
public $intuition;
|
|
|
|
public $endurance;
|
|
|
|
public $intelligence;
|
|
|
|
public $wisdom;
|
|
|
|
public $ip;
|
|
|
|
public $session_id;
|
|
|
|
public $admin;
|
|
|
|
public $enter_game;
|
|
|
|
public $room;
|
|
|
|
public $block;
|
|
|
|
|
2020-07-03 13:49:39 +00:00
|
|
|
// Пока несуществующие, для совместимости.
|
|
|
|
public $married;
|
|
|
|
public $exp;
|
|
|
|
public $stats;
|
|
|
|
|
2020-07-04 10:49:43 +00:00
|
|
|
use Rooms;
|
|
|
|
|
2020-07-03 13:33:34 +00:00
|
|
|
public function __construct($user)
|
2020-07-03 13:23:08 +00:00
|
|
|
{
|
2020-07-03 16:21:57 +00:00
|
|
|
$user_query = db::c()->query('SELECT * FROM users WHERE id = "?s" OR login = "?s"', $user, $user)->fetch_assoc();
|
2020-07-03 13:23:08 +00:00
|
|
|
foreach ($this as $key => $value) {
|
|
|
|
if (isset($user_query[$key])) {
|
|
|
|
$this->$key = $user_query[$key];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-07-03 16:37:24 +00:00
|
|
|
|
2020-07-04 10:49:43 +00:00
|
|
|
public function showUserInfo() {
|
|
|
|
$dressed_items = db::c()->query('SELECT * FROM inventory WHERE owner_id = ?i' AND dressed_slot > 0, $this->id);
|
|
|
|
foreach ($dressed_items->fetch_assoc() as $item) {
|
2020-07-04 11:18:28 +00:00
|
|
|
echo 1;
|
2020-07-04 10:49:43 +00:00
|
|
|
}
|
2020-07-04 11:18:28 +00:00
|
|
|
echo <<<USERINFO
|
|
|
|
Имя {$this->login} <br>
|
|
|
|
Сила {$this->strength} <br>
|
|
|
|
Ловкость {$this->dexterity} <br>
|
|
|
|
Интуиция {$this->intuition} <br>
|
|
|
|
Выносливость {$this->endurance} <br>
|
|
|
|
Интеллект {$this->intelligence} <br>
|
|
|
|
Мудрость {$this->wisdom} <br>
|
|
|
|
Находится в {$this->getRoomName($this->room)}
|
|
|
|
USERINFO;
|
|
|
|
|
2020-07-04 10:49:43 +00:00
|
|
|
}
|
|
|
|
|
2020-07-03 13:23:08 +00:00
|
|
|
}
|