Файл: public_html/belt.php
Строк: 40
<?php
/**
* Алхимия
* @author Alex Priadko
* @package Kninds.ru
*/
$title = 'Сумка алхимии';
$includes = array ('common.php','functions.php','user.php','h.php');
foreach ($includes as $k)
{
$file = $_SERVER['DOCUMENT_ROOT'].'/system/'.$k;
require_once $file;
}
$chest = mysql_fetch_array(mysql_query("SELECT * FROM `chest`
WHERE `user`='".$user['id']."'"));
if (!isset($chest))
{
mysql_query("INSERT INTO `chest`
SET `user`='".$user['id']."'")or die (mysql_error());
header("Location:/belt/");
exit;
}
if (isset($_GET['start']))
{
$start = (int) abs($_GET['start']);
if ($start<1 OR $start>4)
{
header("Location:/belt/");
exit;
}
if ($chest[$start]==0)
{
header("Location:/belt/");
exit;
}
if ($user['el'.$start] == 0 )
{
$paramm = $stats[$start];
$ell= 'el'.$start;
mysql_query("UPDATE `users` SET `$paramm`='".($user[$paramm]+$params)."',
`$ell`='".(time()+84600)."'
WHERE `id`='".$user['id']."'");
mysql_query("UPDATE `chest` SET `$start`='".($chest[$start]-1)."'
WHERE `user`='".$user['id']."'");
?>
<div class="block_light center">
<h2 class="dgreen" style="font-weight:bold;">
Вы употребили эликсир!
</h2>
<div class="separ">
</div>
Вы получаете <font color ="#9C9">+<?=$params;?> <?=$suffix[$i];?></font>
</div>
<?
}
else
{
?>
<div class="block_light center">
<h2 class="dred" style="font-weight:bold;">
Ошибка!
</h2>
<div class="separ">
</div>
Дождитесь окончания действия старого эликсира!
</div>
<?
}
}
for ($i=1;$i<5;$i++)
{
?>
<div class ='content'/>
<div class="block_zero">
<img src="http://5.9.146.51/images/alchemy/default.png" alt="" style="float:left;margin-right:3px;margin-top:3px;" height="50" width="50">
<font color = "#FC6"><?=$namesT[$i];?></font><br>
<span style ="font-size: 85%;">Бонус: <font color ="#9C9">+<?=$params;?> <?=$suffix[$i];?></font>
<br/>
Количество: <span class ='bold'/><?=$chest[$i];?></span> штук.
</span>
<div style="clear:both;"></div>
<div class="center">
<div style="display:inline-block;">
<div class="float-left">
<a class="button" href="/belt/use/<?=$i;?>/">Использовать</a>
</div>
</div>
</div>
<div style="clear:both;">
</div></div>
</div>
<div class ='dl'/></div>
<?
}
require_once $_SERVER['DOCUMENT_ROOT'].'/system/f.php';