mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-06-28 00:24:23 +00:00
fe6ff01396
Fix Some PHP 8+ view error in Build & Credits TO DO : Full audit in build directory
51 lines
2.6 KiB
Smarty
51 lines
2.6 KiB
Smarty
<?php
|
|
|
|
#################################################################################
|
|
## -= YOU MAY NOT REMOVE OR CHANGE THIS NOTICE =- ##
|
|
## --------------------------------------------------------------------------- ##
|
|
## Filename : RALLYPOINT TROOPS ##
|
|
## Type : BUILDING TEMPLATE ##
|
|
## --------------------------------------------------------------------------- ##
|
|
## Refactored by : Shadow ##
|
|
## Redesign by : Shadow ##
|
|
## --------------------------------------------------------------------------- ##
|
|
## Contact : cata7007@gmail.com ##
|
|
## Project : TravianZ ##
|
|
## Test Server : https://travianz.org ##
|
|
## GitHub : https://github.com/Shadowss/TravianZ ##
|
|
## --------------------------------------------------------------------------- ##
|
|
## License : TravianZ Project ##
|
|
## Copyright : TravianZ (c) 2010-2026. All rights reserved. ##
|
|
## --------------------------------------------------------------------------- ##
|
|
#################################################################################
|
|
|
|
$tribe = $session->tribe;
|
|
$start = ($tribe - 1) * 10 + 1;
|
|
$end = $tribe * 10;
|
|
$hasHero = $village->unitarray['hero'] != 0;
|
|
$colspan = $hasHero ? 11 : 10;
|
|
?>
|
|
<tr><th> </th>
|
|
<?php for ($i = $start; $i <= $end; $i++): ?>
|
|
<td><img src="img/x.gif" class="unit u<?= $i ?>" title="<?= $technology->getUnitName($i) ?>" alt="<?= $technology->getUnitName($i) ?>"></td>
|
|
<?php endfor; ?>
|
|
<?php if ($hasHero): ?>
|
|
<td><img src="img/x.gif" class="unit uhero" title="<?php echo U0; ?>" alt="<?php echo U0; ?>"></td>
|
|
<?php endif; ?>
|
|
</tr>
|
|
<tr><th><?= TROOPS ?></th>
|
|
<?php for ($i = $start; $i <= $end; $i++):
|
|
$cnt = $village->unitarray['u'.$i] ?? 0;
|
|
?>
|
|
<td class="<?= $cnt == 0 ? 'none' : '' ?>"><?= $cnt ?></td>
|
|
<?php endfor; ?>
|
|
<?php if ($hasHero): ?>
|
|
<td><?= $village->unitarray['hero'] ?></td>
|
|
<?php endif; ?>
|
|
</tr>
|
|
</tbody>
|
|
<tbody class="infos">
|
|
<tr>
|
|
<th><?= UPKEEP ?></th>
|
|
<td colspan="<?= $colspan ?>"><?= $technology->getUpkeep($village->unitarray, 0) ?><img class="r4" src="img/x.gif" title="<?php echo CROP; ?>" alt="<?php echo CROP; ?>"><?= PER_HR ?></td>
|
|
</tr> |