Files
TravianZ/Admin/Templates/givePlusRes.tpl
T
2025-02-11 11:22:22 +02:00

95 lines
2.4 KiB
Smarty

<?php
#################################################################################
## -= YOU MAY NOT REMOVE OR CHANGE THIS NOTICE =- ##
## --------------------------------------------------------------------------- ##
## Filename givePlusRes.tpl ##
## Developed by: aggenkeech ##
## License: TravianZ Project ##
## Copyright: TravianZ (c) 2010-2025. All rights reserved. ##
## ##
#################################################################################
if($_SESSION['access'] < ADMIN) die("Access Denied: You are not Admin!");
$id = $_SESSION['id']; ?>
<form action="../GameEngine/Admin/Mods/givePlusRes.php" method="POST">
<input type="hidden" name="admid" id="admid" value="<?php echo $_SESSION['id']; ?>">
<table id="member" style="width:300px;">
<thead>
<tr>
<th colspan="2">Give Everyone Free Res Bonus</th>
</tr>
<tr>
<td class="hab">Resource Bonus</td>
<td>Duration</td>
</tr>
</thead>
<tbody>
<tr>
<td>
<center>
<img src="../img/admin/r/1.gif"> Wood
</center>
</td>
<td>
<center>
<input class="fm" name="wood" value="1" maxlength="4"> Day
</center>
</td>
</tr>
<tr>
<td>
<center>
<img src="../img/admin/r/2.gif"> Clay
</center>
</td>
<td>
<center>
<input class="fm" name="clay" value="1" maxlength="4"> Day
</center>
</td>
</tr>
<tr>
<td>
<center>
<img src="../img/admin/r/1.gif"> Iron
</center>
</td>
<td>
<center>
<input class="fm" name="iron" value="1" maxlength="4"> Day
</center>
</td>
</tr>
<tr>
<td>
<center>
<img src="../img/admin/r/4.gif"> Crop
</center>
</td>
<td>
<center>
<input class="fm" name="crop" value="1" maxlength="4"> Day
</center>
</td>
</tr>
<tr>
<td colspan="2">
<center>
<input type="image" src="../img/admin/b/ok1.gif" value="submit" title="Give Players Free Gold">
</center>
</td>
</tr>
</tbody>
</table>
</form>
<?php
if(isset($_GET['g']))
{
echo '<br /><br /><font color="Red"><b>Resource Bonuses Given</font></b>';
}
?>