//zabij atakującego wg zabitych
foreach($units as $unit){
query("update attacks_units set au_count = ".$unit['au_count']." where au_u_id = ".$unit['au_u_id']." and au_a_id = ".$event['a_id']);
}
$text .= 'Wygrałeś bitwę
';
$text1 .= 'Przegrałeś bitwę
';
if($planet2['p_morale'] > 10){
query("update planets set p_morale = p_morale - 10 where p_id =".$planet2['p_id']);
} else {
$can = one("select count(*) from planets where p_user = ".$planet1['p_user']);
if($can < 6){
query("update planets set p_user = ".$planet1['p_user'].", p_morale = 100 where p_morale < 11 and p_id = ".$planet2['p_id']);
$text .= 'Przejąłeś planetę '.$planet2['p_name'].' !!
';
$text1 .= 'Straciłeś planetę '.$planet2['p_name'].' !!
';
query("update users set planet = 0 where planet =".$planet2['p_id']);
}
}
Zakładki