Main gui
This commit is contained in:
parent
d594634fb0
commit
ef4c72554e
17
main.php
17
main.php
@ -2740,15 +2740,16 @@ if ($user['room'] == 666) {
|
|||||||
<body onLoad="<?= topsethp(); ?>">
|
<body onLoad="<?= topsethp(); ?>">
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
$d = mysql_fetch_array(mysql_query("SELECT sum(`massa`) FROM `inventory` WHERE `owner` = '{$user['id']}' AND `dressed` = 0 AND `setsale` = 0 ; "));
|
$d = db::c()->query('SELECT SUM(`massa`) AS `summ` FROM `inventory` WHERE `owner` = ?i AND `dressed` = 0 AND `setsale` = 0', $user['id'])->fetch_assoc();
|
||||||
if ($d[0] > get_meshok() && $_GET['goto']) {
|
if ($d['summ'] > get_meshok() && $_GET['got']) {
|
||||||
echo "<font color=red><b>У вас переполнен рюкзак, вы не можете передвигаться...</b></font>";
|
err('У вас переполнен рюкзак, вы не можете передвигаться...');
|
||||||
$_GET['goto'] = 0;
|
$_GET['got'] = 0;
|
||||||
}
|
}
|
||||||
$eff = mysql_fetch_array(mysql_query("SELECT * FROM `effects` WHERE `owner` = '" . $u['id'] . "' AND (`type` = 14 OR `type` = 13);"));
|
|
||||||
if ($eff && $_GET['goto']) {
|
$eff = db::c()->query('SELECT `id` FROM `effects` WHERE `owner` = ?i AND (`type` = 14 OR `type` = 13) LIMIT 1', $user['id'])->fetch_assoc();
|
||||||
echo "<font color=red><b>У вас тяжелая травма, вы не можете передвигаться...</b></font>";
|
if (isset($eff['id']) && $_GET['got']) {
|
||||||
$_GET['goto'] = 0;
|
err('У вас тяжелая травма, вы не можете передвигатся...');
|
||||||
|
$_GET['got'] = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($_GET['goto'] == 'plo') {
|
if ($_GET['goto'] == 'plo') {
|
||||||
|
Loading…
Reference in New Issue
Block a user