Fix Bucket of Water & Wall View

Fix Bucket of Water & Wall View
This commit is contained in:
novgorodschi catalin
2026-07-30 09:04:34 +03:00
parent ec65da48f4
commit a9977edc5c
7 changed files with 144 additions and 50 deletions
+12 -11
View File
@@ -1,15 +1,16 @@
<h2><?php echo CITYWALL ?></h2>
<table class="new_building" cellpadding="1" cellspacing="1">
<tbody><tr>
<td class="desc"><?php echo CITYWALL_DESC ?></td>
<td rowspan="3" class="bimg">
</td>
</tr>
<tr>
<?php
<table class="new_building" cellpadding="1" cellspacing="1">
<tbody><tr>
<td class="desc"><?php echo CITYWALL_DESC ?></td>
<td rowspan="3" class="bimg">
<a href="#" onClick="return Popup(31,4);">
<img class="building g31" src="img/x.gif" alt="<?php echo CITYWALL; ?>" title="<?php echo CITYWALL; ?>" /></a>
</td>
</tr>
<tr>
<?php
$_GET['bid'] = 31;
include("availupgrade.tpl");
?>
</tr>
</table>
</tr></tbody>
</table>
+12 -11
View File
@@ -1,15 +1,16 @@
<h2><?php echo EARTHWALL ?></h2>
<table class="new_building" cellpadding="1" cellspacing="1">
<tbody><tr>
<td class="desc"><?php echo EARTHWALL_DESC ?></td>
<td rowspan="3" class="bimg">
</td>
</tr>
<tr>
<?php
<table class="new_building" cellpadding="1" cellspacing="1">
<tbody><tr>
<td class="desc"><?php echo EARTHWALL_DESC ?></td>
<td rowspan="3" class="bimg">
<a href="#" onClick="return Popup(32,4);">
<img class="building g32" src="img/x.gif" alt="<?php echo EARTHWALL; ?>" title="<?php echo EARTHWALL; ?>" /></a>
</td>
</tr>
<tr>
<?php
$_GET['bid'] = 32;
include("availupgrade.tpl");
?>
</tr>
</table>
</tr></tbody>
</table>
+12 -11
View File
@@ -1,15 +1,16 @@
<h2><?php echo PALISADE ?></h2>
<table class="new_building" cellpadding="1" cellspacing="1">
<tbody><tr>
<td class="desc"><?php echo PALISADE_DESC ?></td>
<td rowspan="3" class="bimg">
</td>
</tr>
<tr>
<?php
<table class="new_building" cellpadding="1" cellspacing="1">
<tbody><tr>
<td class="desc"><?php echo PALISADE_DESC ?></td>
<td rowspan="3" class="bimg">
<a href="#" onClick="return Popup(33,4);">
<img class="building g33" src="img/x.gif" alt="<?php echo PALISADE; ?>" title="<?php echo PALISADE; ?>" /></a>
</td>
</tr>
<tr>
<?php
$_GET['bid'] = 33;
include("availupgrade.tpl");
?>
</tr>
</table>
</tr></tbody>
</table>
+18
View File
@@ -0,0 +1,18 @@
<h2><?php echo CITYWALL ?></h2>
<table class="new_building" cellpadding="1" cellspacing="1">
<tbody><tr>
<td class="desc"><?php echo CITYWALL_DESC ?></td>
<td rowspan="3" class="bimg">
<a href="#" onClick="return Popup(31,4);">
<img class="building g31" src="img/x.gif" alt="<?php echo CITYWALL ?>" title="<?php echo CITYWALL ?>" /></a>
</td>
</tr>
<tr>
<td class="requ"><?php echo PREREQUISITES ?></td>
</tr>
<tr>
<td>
<?php echo TRIBE1; ?>
</td>
</tr></tbody>
</table>
+18
View File
@@ -0,0 +1,18 @@
<h2><?php echo EARTHWALL ?></h2>
<table class="new_building" cellpadding="1" cellspacing="1">
<tbody><tr>
<td class="desc"><?php echo EARTHWALL_DESC ?></td>
<td rowspan="3" class="bimg">
<a href="#" onClick="return Popup(32,4);">
<img class="building g32" src="img/x.gif" alt="<?php echo EARTHWALL ?>" title="<?php echo EARTHWALL ?>" /></a>
</td>
</tr>
<tr>
<td class="requ"><?php echo PREREQUISITES ?></td>
</tr>
<tr>
<td>
<?php echo TRIBE2; ?>
</td>
</tr></tbody>
</table>
+18
View File
@@ -0,0 +1,18 @@
<h2><?php echo PALISADE ?></h2>
<table class="new_building" cellpadding="1" cellspacing="1">
<tbody><tr>
<td class="desc"><?php echo PALISADE_DESC ?></td>
<td rowspan="3" class="bimg">
<a href="#" onClick="return Popup(33,4);">
<img class="building g33" src="img/x.gif" alt="<?php echo PALISADE ?>" title="<?php echo PALISADE ?>" /></a>
</td>
</tr>
<tr>
<td class="requ"><?php echo PREREQUISITES ?></td>
</tr>
<tr>
<td>
<?php echo TRIBE3; ?>
</td>
</tr></tbody>
</table>