mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-08-29 14:47:14 +00:00
Refactor + BugFix
1. Fix a bug in Admin Panel that you can edit by yourself your rank, now you cannot edit your rank anymore. 2. Now Alliance Leader can edit his own Position 3. Fix negative value on Demolition Building, now in database at lvl is appear new level not -1 4. Refactor Ajax map, now all is alligned (Ajax folder and Map folder) 5. Fix bug from Palace (when change capital now Automation recount population automaticaly on old capital and new capital)
This commit is contained in:
+43
-35
@@ -1,39 +1,47 @@
|
||||
<?php
|
||||
include("next.tpl");
|
||||
?>
|
||||
<div id="build" class="gid11"><a href="#" onClick="return Popup(11,4);" class="build_logo">
|
||||
<img class="building g11" src="img/x.gif" alt="Granary" title="<?php echo GRANARY; ?>" />
|
||||
</a>
|
||||
<h1><?php echo GRANARY; ?> <span class="level"><?php echo LEVEL; ?> <?php echo $village->resarray['f'.$id]; ?></span></h1>
|
||||
<p class="build_desc"><?php echo GRANARY_DESC; ?></p>
|
||||
|
||||
// GRANARY
|
||||
|
||||
<table cellpadding="1" cellspacing="1" id="build_value">
|
||||
<tr>
|
||||
<th><?php echo CURRENT_CAPACITY; ?></th>
|
||||
<td><b><?php echo $bid11[$village->resarray['f'.$id]]['attri']*STORAGE_MULTIPLIER; ?></b> <?php echo CROP_UNITS; ?></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<?php
|
||||
if(!$building->isMax($village->resarray['f'.$id.'t'],$id)) {
|
||||
$next = $village->resarray['f'.$id]+1+$loopsame+$doublebuild+$master;
|
||||
if($next<=20){
|
||||
?>
|
||||
<th><?php echo CAPACITY_LEVEL; ?> <?php echo $next ?>:</th>
|
||||
<td><b><?php echo $bid11[$next]['attri']*STORAGE_MULTIPLIER; ?></b> <?php echo CROP_UNITS; ?></td>
|
||||
<?php
|
||||
}else{
|
||||
?>
|
||||
<th><?php echo CAPACITY_LEVEL; ?> 20:</th>
|
||||
<td><b><?php echo $bid11[20]['attri']*STORAGE_MULTIPLIER; ?></b> <?php echo CROP_UNITS; ?></td>
|
||||
<?php
|
||||
}
|
||||
}
|
||||
?>
|
||||
</tr>
|
||||
</table>
|
||||
<?php
|
||||
include("upgrade.tpl");
|
||||
include 'next.tpl';
|
||||
|
||||
$field = 'f' . $id;
|
||||
$currentLevel = (int) ($village->resarray[$field] ?? 0);
|
||||
$buildingType = $village->resarray[$field . 't'] ?? 0;
|
||||
|
||||
$currentCapacity = $bid11[$currentLevel]['attri'] * STORAGE_MULTIPLIER;
|
||||
|
||||
$isMax = $building->isMax($buildingType, $id);
|
||||
$maxLevel = 20;
|
||||
|
||||
$nextLevelRaw = $currentLevel + 1 + $loopsame + $doublebuild + $master;
|
||||
$nextLevel = min($nextLevelRaw, $maxLevel);
|
||||
$nextCapacity = $bid11[$nextLevel]['attri'] * STORAGE_MULTIPLIER;
|
||||
?>
|
||||
</p></div>
|
||||
<div id="build" class="gid11">
|
||||
<a href="#" onclick="return Popup(11,4);" class="build_logo">
|
||||
<img class="building g11" src="img/x.gif" alt="<?= GRANARY ?>" title="<?= GRANARY ?>">
|
||||
</a>
|
||||
|
||||
<h1>
|
||||
<?= GRANARY ?>
|
||||
<span class="level"><?= LEVEL ?> <?= $currentLevel ?></span>
|
||||
</h1>
|
||||
|
||||
<p class="build_desc"><?= GRANARY_DESC ?></p>
|
||||
|
||||
<table cellpadding="1" cellspacing="1" id="build_value">
|
||||
<tr>
|
||||
<th><?= CURRENT_CAPACITY ?>:</th>
|
||||
<td><b><?= $currentCapacity ?></b> <?= CROP_UNITS ?></td>
|
||||
</tr>
|
||||
|
||||
<?php if (!$isMax): ?>
|
||||
<tr>
|
||||
<th><?= CAPACITY_LEVEL ?> <?= $nextLevel ?>:</th>
|
||||
<td><b><?= $nextCapacity ?></b> <?= CROP_UNITS ?></td>
|
||||
</tr>
|
||||
<?php endif; ?>
|
||||
</table>
|
||||
|
||||
<?php include 'upgrade.tpl'; ?>
|
||||
</div>
|
||||
Reference in New Issue
Block a user