edit trapper + bug fixed: in each resouce places, when you upgrade 2 level with waiting loop, the "production at level ?" must equal to "upgrade to level ?"

This commit is contained in:
unknown
2012-04-10 15:45:16 +03:00
parent f75f7dd699
commit c2a09eca5e
23 changed files with 436 additions and 142 deletions
+32 -3
View File
@@ -1,3 +1,7 @@
<?php
$loopsame = ($building->isCurrent($id) || $building->isLoop($id))?1:0;
$doublebuild = ($building->isCurrent($id) && $building->isLoop($id))?1:0;
?>
<div id="build" class="gid3"><a href="#" onClick="return Popup(3,4);" class="build_logo">
<img class="building g3" src="img/x.gif" alt="<?php echo B3; ?>" title="<?php echo B3; ?>" />
</a>
@@ -13,13 +17,38 @@
</tr>
<?php
if(!$building->isMax($village->resarray['f'.$id.'t'],$id)) {
$next = $village->resarray['f'.$id]+1+$loopsame+$doublebuild;
if($village->capital == 1) {
if($next<=20){
?>
<tr>
<th><?php echo NEXT_PROD; echo $village->resarray['f'.$id]+1; ?>:</th>
<td><b><?php echo $bid3[$village->resarray['f'.$id]+1]['prod']* SPEED; ?></b> <?php echo PER_HR; ?></td>
<th><?php echo NEXT_PROD; echo $next; ?>:</th>
<td><b><?php echo $bid3[$next]['prod']* SPEED; ?></b> <?php echo PER_HR; ?></td>
</tr>
<?php
}
}else{
?>
<tr>
<th><?php echo NEXT_PROD; echo 20; ?>:</th>
<td><b><?php echo $bid3[20]['prod']* SPEED; ?></b> <?php echo PER_HR; ?></td>
</tr>
<?php
}}else{
if($next<=10){
?>
<tr>
<th><?php echo NEXT_PROD; echo $next; ?>:</th>
<td><b><?php echo $bid3[$next]['prod']* SPEED; ?></b> <?php echo PER_HR; ?></td>
</tr>
<?php
}else{
?>
<tr>
<th><?php echo NEXT_PROD; echo 10; ?>:</th>
<td><b><?php echo $bid3[10]['prod']* SPEED; ?></b> <?php echo PER_HR; ?></td>
</tr>
<?php
}}}
?>
</table>