Файл: public_html/modules/shop/item.php
Строк: 62
<?php
$root = $_SERVER['DOCUMENT_ROOT'];
include_once ($root.'/core/base.php');
falseauth();
$type = fl($_GET['type']);
if(!in_array($type, ['head', 'body', 'weapon', 'boots'])) header("Location: /shop");
$types = ['head' => 'Шлем', 'body' => 'Броня' ,'boots' => 'Обувь', 'weapon' => 'Оружие'];
$item_id = fl($_GET['item_id']);
$item_sql = $db->query("SELECT * FROM `subject` WHERE `translate` = '".$item_id."'");
if($item_sql->num_rows == 0) header("Location: /shop/".$type);
$item = $item_sql->fetch_object();
$header = "Магазин снаряжения::".$types[$type]."::".$item->name;
include_once ($root.'/core/head.php');
if(isset($_GET['buy']))
{
if($u['gold'] < $item->gems) msg('Недостаточно гемов');
elseif($u['silver'] < $item->silver) msg('Недостаточно серебра');
if(isset($_GET['yes']))
{
if($u['gold'] >= $item->gems && $u['silver'] >= $item->silver)
{
makeUserPayment($u['id'], $item->gems, $item->silver);
$db->query("INSERT INTO `inventory` (`user`,`item`,`type`,`buytime`) VALUES ('".$u['id']."', '".$item->id."', '".$item->clothing_type."', '".time()."')");
campaignUpdate($u['id'],2,1,1,[8,'Шлем десятника'],[$item->level,$item->name]);
campaignUpdate($u['id'],3,1,1,[14,'Копье метателя'],[$item->level,$item->name]);
campaignUpdate($u['id'],4,1,1,[14,'head'],[$item->level, $item->clothing_type]);
campaignUpdate($u['id'],4,1,1,[14,'body'],[$item->level, $item->clothing_type]);
campaignUpdate($u['id'],4,1,1,[14,'boots'],[$item->level, $item->clothing_type]);
campaignUpdate($u['id'],4,1,1,[14,'weapon'],[$item->level, $item->clothing_type]);
campaignUpdate($u['id'],6,1,1,[25],[$item->level]);
if($u['tutorial'] == 7)
{
if($_SESSION[$item->clothing_type] == 0)
{
$_SESSION[$item->clothing_type] = 1;
}
}
$_SESSION['message'] = 'Покупка совершена!';
header("Location: /shop");
exit;
}
}
echo '<div class = "ram-t"><div class = "b"><font color="white"><center>Вы действительно хотите купить
предмет <big>'.$item->name.'</big>?
<br></br><a href="/shop/'.$type.'/'.$item_id.'/buy/yes" class = "btn _green">Да</a> <a href="/shop/'.$type.'/'.$item_id.'/" class = "btn _orange">Нет</a></center></font></div></div>';
}
echo '
<div class = "b">
<table width="100%">
<tr>
<td width="80px" valign="top">
<img width="70px" src="'.$item->images.'"/>
</td>
<td valign="top">
<big> <font color = "white">'.$item->name.' <br>'.$item->level.' ур.<br></font></big>
<div class="txt">
'.$item->description.'<br>
<img src="/images/health.png" width="25px"> '.$item->health.'
<img src="/images/str.png" width="25px"> '.$item->power.'
<img src="/images/def.png" width="25px"> '.$item->block.'
</div>
</td>
</tr>
</table></div></div>
';
echo '<div class = "b">
<center><a href="/shop/'.$type.'/'.$item_id.'/buy" class = "clicker ">Купить</a>
<br><img src="/images/silver.png" width="20px"> '.$item->silver.'
'.($item->gems != 0 ? '<img src="/images/ic-gem.png" width="20px"> '.$item->gems.'<br>' : '').'</br>
</center>
</font></center>';
echo"<center><a class = 'clicker _gold' href = '/shop/".$type."/'>Назад</a></center></div>";
include_once ($root.'/core/foot.php');