Файл: inc/f_myfarm/harvest_all.php
Строк: 47
<?
if(isset($_GET['f_myfarm']) && isset($_GET['harvest_all']) && mysql_result(mysql_querll("SELECT COUNT(*) FROM `kolhoz_ground_f` WHERE `id_user` = '$ku[id]' AND (`time` < '$time' OR `time` = '$time') AND `id_plant` != '0'"),0)!=0 && $ku['harvester_f']>0)
{
$q=mysql_querll("SELECT * FROM `kolhoz_ground_f` WHERE `id_user` = '$ku[id]' AND (`time` < '$time' OR `time` = '$time') AND `id_plant` != '0'");
$ohv=0;
while($post=mysql_fetch_array($q))
{
$plant=mysql_fetch_array(mysql_querll("SELECT * FROM `kolhoz_fish` WHERE `id` = '$post[id_plant]'"));
$count=$plant['count'];
$count_harvester_f_act=0;
$count_yastreb_act=0;
$count_greenhouse_act=0;
if(isset($harvester_f_act))$count_harvester_f_act=floor(($count/100)*$harvester_f_act);
if(isset($yastreb_act))$count_yastreb_act=(($count/100)*300);
if(isset($greenhouse_act))$count_greenhouse_act=(($count/100)*$greenhouse_ps);
$count=$count+$count_harvester_f_act+$count_yastreb_act+$count_greenhouse_act;
$count=floor($count);
if($pw=mysql_fetch_array(mysql_querll("SELECT * FROM `kolhoz_warehouse_f` WHERE `id_user` = '$ku[id]' AND `id_plant` = '$plant[id]' AND `fish` = '1' AND `arena` ='0'")))
{
mysql_querll("UPDATE `kolhoz_warehouse_f` SET `count` = '".($pw['count']+$count)."' WHERE `id` = '$pw[id]'");
}
else mysql_querll("INSERT INTO `kolhoz_warehouse_f` SET `id_plant` = '$plant[id]', `id_user` = '$ku[id]', `count` = '$count', `arena` = '0',`fish` = '1'");
mysql_querll("UPDATE `kolhoz_ground_f` SET `id_plant` = '0', `soil` = '0', `cultivator` = '0' WHERE `id` = '$post[id]' LIMIT 1");
$ohv=$ohv+$count;
}
$_SESSION['fish']=$ohv;
//mysql_querll("UPDATE `kolhoz_user` SET `sadovod` = '".($ku['sadovod']+$ohv)."' WHERE `id` = '$ku[id]'");
header("Location:?f_myfarm&".passgen());
exit;
}
?>