game/_incl_data/class/priem/224.php

27 lines
995 B
PHP
Raw Normal View History

2022-06-06 21:30:34 +00:00
<?
if(!defined('GAME')) {
die();
}
/*
2023-01-10 16:29:32 +00:00
Прием: Разделить кровь
2022-06-06 21:30:34 +00:00
*/
$pvr = array();
if( isset($this->ue['id']) ) {
$btl->users[$btl->uids[$this->ue['id']]]['tactic6'] += 1;
$btl->stats[$btl->uids[$this->ue['id']]]['tactic6'] += 1;
if( $this->ue['id'] == $u->info['id'] ) {
$u->info['tactic6'] += 1;
$u->stats['tactic6'] += 1;
}
mysql_query('UPDATE `stats` SET `tactic6` = "'.mysql_real_escape_string($btl->users[$btl->uids[$this->ue['id']]]['tactic6']).'" WHERE `id` = "'.$this->ue['id'].'" LIMIT 1');
2023-01-10 16:29:32 +00:00
echo '<font color=red><b>Вы успешно использовали прием &quot;Разделить кровь&quot; на &quot;'.$this->ue['login'].'&quot;</b></font>';
2022-06-06 21:30:34 +00:00
$btl->priemAddLog( $id, 1, 2, $u->info['id'], $this->ue['id'],
2023-01-10 16:29:32 +00:00
'Разделить кровь',
'{tm1} '.$btl->addlt(1 , 17 , $btl->users[$btl->uids[$u->info['id']]]['sex'] , NULL).' на {u2}',
2022-06-06 21:30:34 +00:00
($btl->hodID)
);
}
2023-01-10 16:29:32 +00:00
//Отнимаем тактики
2022-06-06 21:30:34 +00:00
$this->mintr($pl);
unset($pvr);
?>