mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-06-28 00:24:23 +00:00
57 lines
1.7 KiB
Smarty
57 lines
1.7 KiB
Smarty
<?php
|
|
|
|
#################################################################################
|
|
|
|
## -= YOU MAY NOT REMOVE OR CHANGE THIS NOTICE =- ##
|
|
|
|
## --------------------------------------------------------------------------- ##
|
|
|
|
## Filename natarbuildingplan.tpl ##
|
|
|
|
## Developed by: advocaite ##
|
|
|
|
## License: TravianX Project ##
|
|
|
|
## Copyright: TravianX (c) 2010-2011. All rights reserved. ##
|
|
|
|
## ##
|
|
|
|
#################################################################################
|
|
|
|
|
|
|
|
if($_SESSION['access'] < ADMIN) die("Access Denied: You are not Admin!");
|
|
|
|
|
|
|
|
?>
|
|
|
|
<?php $id = $_SESSION['id']; ?>
|
|
|
|
<form action="../GameEngine/Admin/Mods/natarbuildingplan.php" method="POST">
|
|
|
|
<input type="hidden" name="id" id="id" value="<?php echo $id; ?>">
|
|
|
|
<br /><br /><br /><br /><br /><br /><br /><br /><br />
|
|
|
|
<center><b>Create WW Buildingplan villages?</b></center>
|
|
|
|
<center><br /><input class="give_gold" name="vill_amount" id="vill_amount" value="20" maxlength="4"> <font color="gray" size="1">insert number of Villages and press 'enter'</center>
|
|
<tr>
|
|
<td><label><input class="radio" type="radio" name="kid" value="1" checked> <?php echo NW; ?> <b>(-|+)</b> </label></td>
|
|
<td><label><input class="radio" type="radio" name="kid" value="2"> <?php echo NE; ?> <b>(+|+)</b></label></td>
|
|
<td><label><input class="radio" type="radio" name="kid" value="3"> <?php echo SW; ?> <b>(-|-)</b> </label></td>
|
|
<td><label><input class="radio" type="radio" name="kid" value="4"> <?php echo SE; ?> <b>(+|-)</b></label></td>
|
|
</tr>
|
|
</form>
|
|
<?php
|
|
|
|
if(isset($_GET['g'])) {
|
|
|
|
|
|
|
|
echo '<br /><br /><font color="Red"><b>WW Buidingplan villages Added</font></b>';
|
|
|
|
}
|
|
|
|
?> |