2022-06-06 21:30:34 +00:00
|
|
|
|
<?
|
|
|
|
|
if(!defined('GAME'))
|
|
|
|
|
{
|
|
|
|
|
die();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if($e['bm_a1']=='itm10026' && $end > 0)
|
|
|
|
|
{
|
|
|
|
|
$hpmin = $this->atacks[$end]['uid_'.$uid1.'_t1']+$this->atacks[$end]['uid_'.$uid1.'_t4']+$this->atacks[$end]['uid_'.$uid1.'_t5'];
|
|
|
|
|
if(rand(0,10000)<5000 && $hpmin > 0)
|
|
|
|
|
{
|
2023-01-10 16:29:32 +00:00
|
|
|
|
//наносим урон магическим кольцом
|
2022-06-06 21:30:34 +00:00
|
|
|
|
$hpmin = rand(7,16);
|
|
|
|
|
$hpmin = $hpmin*$this->users[$this->uids[$uid2]]['level'];
|
|
|
|
|
//
|
|
|
|
|
$hpmin = floor(1+$hpmin);
|
|
|
|
|
if($hpmin < 0) { $hpmin = 0; }
|
|
|
|
|
$hp2 = $this->stats[$this->uids[$uid2]]['hpNow'];
|
|
|
|
|
|
2023-01-10 16:29:32 +00:00
|
|
|
|
//расчет урона стихий
|
2022-06-06 21:30:34 +00:00
|
|
|
|
|
|
|
|
|
$hp2 -= $hpmin;
|
|
|
|
|
if($hp2<0)
|
|
|
|
|
{
|
|
|
|
|
$hp2 = 0;
|
|
|
|
|
}elseif($hp2>$this->stats[$this->uids[$uid2]]['hpNow'])
|
|
|
|
|
{
|
|
|
|
|
$hp2 = $this->stats[$this->uids[$uid2]]['hpNow'];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$this->takeExp($u->info['id'],$hpmin,$uid1,$uid2);
|
|
|
|
|
|
2023-01-10 16:29:32 +00:00
|
|
|
|
//отнимаем НР
|
2022-06-06 21:30:34 +00:00
|
|
|
|
$this->users[$this->uids[$uid2]]['hpNow'] = $hp2;
|
|
|
|
|
$this->stats[$this->uids[$uid2]]['hpNow'] = $hp2;
|
|
|
|
|
mysql_query('UPDATE `stats` SET `hpNow` = '.$hp2.' WHERE `id` = "'.$uid2.'" LIMIT 1');
|
|
|
|
|
|
2023-01-10 16:29:32 +00:00
|
|
|
|
//заносим в лог боя
|
2022-06-06 21:30:34 +00:00
|
|
|
|
$vLog = 'time1='.time().'||s1='.$this->users[$this->uids[$uid1]]['sex'].'||t1='.$this->users[$this->uids[$uid1]]['team'].'||login1='.$this->users[$this->uids[$uid1]]['login'].'||s2='.$this->users[$this->uids[$uid2]]['sex'].'||t2='.$this->users[$this->uids[$uid2]]['team'].'||login2='.$this->users[$this->uids[$uid2]]['login'].'';
|
|
|
|
|
$mas1 = array('time'=>time(),'battle'=>$this->info['id'],'id_hod'=>($this->hodID),'text'=>'','vars'=>$vLog,'zona1'=>'','zonb1'=>'','zona2'=>'','zonb2'=>'','type'=>'1');
|
|
|
|
|
if($hpmin>0)
|
|
|
|
|
{
|
|
|
|
|
$hpmin = '-'.$hpmin;
|
|
|
|
|
}else{
|
|
|
|
|
$hpmin = '--';
|
|
|
|
|
}
|
|
|
|
|
$rtm=rand(1,2);
|
|
|
|
|
if ($rtm==1)
|
|
|
|
|
{
|
2023-01-10 16:29:32 +00:00
|
|
|
|
$mas1['text'] = '{tm1} {u2} Ледяной ветер от "<b>'.$itm['name'].'</b>" нанес повреждения <b title=Тип урона: холод ><font color=#0000FF>'.$hpmin.'</font></b> ['.ceil($hp2).'/'.$this->stats[$this->uids[$uid2]]['hpAll'].']';
|
2022-06-06 21:30:34 +00:00
|
|
|
|
}
|
|
|
|
|
elseif ($rtm==2)
|
|
|
|
|
{
|
2023-01-10 16:29:32 +00:00
|
|
|
|
$mas1['text'] = '{tm1} {u2} "<b>'.$itm['name'].'</b>" оставил печать холода <b title=Тип урона: холод ><font color=#0000FF>'.$hpmin.'</font></b> ['.ceil($hp2).'/'.$this->stats[$this->uids[$uid2]]['hpAll'].']';
|
2022-06-06 21:30:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$this->add_log($mas1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
?>
|