mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-06-28 00:24:23 +00:00
78 lines
2.6 KiB
Smarty
78 lines
2.6 KiB
Smarty
<?php
|
|
if(!$session->goldclub) {
|
|
include "Templates/Build/16.tpl";
|
|
}else{
|
|
?>
|
|
<div id="build" class="gid16"><a href="#" onClick="return Popup(16,4);" class="build_logo">
|
|
<img class="g16" src="img/x.gif" alt="Rally point" title="Rally point" />
|
|
</a>
|
|
<h1>Rally point <span class="level">level <?php echo $village->resarray['f'.$id]; ?></span></h1>
|
|
<p class="build_desc">Your village's troops meet here. From here you can send them out to conquer, raid or reinforce other villages.</p>
|
|
|
|
<div id="textmenu">
|
|
<a href="build.php?id=<?php echo $id; ?>">Overview</a> |
|
|
<a href="a2b.php">Send troops</a> |
|
|
<a href="warsim.php">Combat Simulator</a> <?php if($session->goldclub==1){ ?>|
|
|
<a href="build.php?id=<?php echo $id; ?>&t=99">Gold Club</a>
|
|
<?php } ?>
|
|
</div>
|
|
|
|
<div id="raidList">
|
|
<?php include "Templates/goldClub/farmlist.tpl"; ?>
|
|
</div>
|
|
<br />
|
|
<?php if($hideevasion == 0){ ?>
|
|
<table cellpadding="1" cellspacing="1">
|
|
<thead>
|
|
<tr>
|
|
<th colspan="4">evasion settings</th>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td></td>
|
|
|
|
<td>village</td>
|
|
|
|
<td>own troops</td>
|
|
|
|
<td>reinforcement</td>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php
|
|
for($i=0;$i<=count($session->villages)-1;$i++) {
|
|
$wref = $session->villages[$i];
|
|
$vname = $database->getVillageField($wref,"name");
|
|
$vchecked = $database->getVillageField($wref,"evasion");
|
|
$reinf = $database->getEnforceVillage($wref,0);
|
|
if($vchecked == 1){ $checked = 'checked'; }else{ $checked = ''; }
|
|
?>
|
|
<tr>
|
|
<td><input type="checkbox" class="check" name="hideShow" onclick="window.location.href = '?gid=16&t=99&evasion=<?php echo $wref;?>';" <?php echo $checked; ?>></td>
|
|
|
|
<td><?php echo $vname; ?></td>
|
|
|
|
<td><?php echo $database->getUnitsNumber($wref); ?></td>
|
|
|
|
<td><?php echo count($reinf); ?></td>
|
|
</tr>
|
|
<?php
|
|
}
|
|
$user = $database->getUserArray($session->uid, 1);
|
|
?>
|
|
</tbody>
|
|
</table>
|
|
<form action="build.php?id=39&t=99" method="POST">
|
|
<br />
|
|
<tr>
|
|
Send troops away a maximun of <input class="text" type="text" name="maxevasion" value="<?php echo $user['maxevasion']; ?>" maxlength="3" style="width:50px;"> times
|
|
<span class="none">(costs: <img src="<?php echo GP_LOCATE; ?>img/a/gold_g.gif" alt="Gold" title="Gold"/><b>2</b> per evasion)</span>
|
|
|
|
</tr>
|
|
<tr>
|
|
<div class="clear"></div><p><input type="image" value="ok" name="s1" id="btn_ok" class="dynamic_img" src="img/x.gif" tabindex="8" alt="OK"/></p></form>
|
|
</tr>
|
|
</form>
|
|
<?php } ?>
|
|
</div>
|
|
<?php } ?> |