mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-08-17 00:31:02 +00:00
fix ww rank: now the ww dissapear from rank when he destroyed + reworked admin panel by allycol93 with some changes by me
This commit is contained in:
@@ -0,0 +1,59 @@
|
||||
<?php
|
||||
#################################################################################
|
||||
## -= YOU MAY NOT REMOVE OR CHANGE THIS NOTICE =- ##
|
||||
## --------------------------------------------------------------------------- ##
|
||||
## Filename editOverall.tpl ##
|
||||
## Developed by: aggenkeech ##
|
||||
## License: TravianX Project ##
|
||||
## Copyright: TravianX (c) 2010-2012. All rights reserved. ##
|
||||
## ##
|
||||
#################################################################################
|
||||
|
||||
$id = $_GET['uid'];
|
||||
$uid = $_GET['uid'];
|
||||
$user = $database->getUserArray($id,1);
|
||||
if(isset($id))
|
||||
{
|
||||
?>
|
||||
<form action="../GameEngine/Admin/Mods/editWeek.php" method="POST">
|
||||
<input type="hidden" name="admid" id="admid" value="<?php echo $_SESSION['id']; ?>">
|
||||
<input type="hidden" name="uid" value="<?php echo $uid; ?>" />
|
||||
<input type="hidden" name="id" value="<?php echo $id; ?>" />
|
||||
<br />
|
||||
<table id="profile" cellpadding="0" cellspacing="0">
|
||||
<thead>
|
||||
<tr>
|
||||
<th colspan="2">Edit Off, Def, Raid Points This Week For: <a href="admin.php?p=player&uid=<?php echo $user['id']; ?>"><?php echo $user['username']; ?></a></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Edit Attack Points</td>
|
||||
<td>
|
||||
<input class="fm" name="off" value="<?php echo $user['ap']; ?>" style="width: 60%;"> Points
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Edit Defence Points</td>
|
||||
<td>
|
||||
<input class="fm" name="def" value="<?php echo $user['dp']; ?>" style="width: 60%;"> Points
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Edit Resources Raided</td>
|
||||
<td>
|
||||
<input class="fm" name="res" value="<?php echo $user['RR']; ?>" style="width: 60%;"> Points
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<br />
|
||||
<center><input type="image" value="submit" src="../img/admin/b/ok1.gif"></center>
|
||||
</form>
|
||||
<?php
|
||||
}
|
||||
else
|
||||
{
|
||||
include("404.tpl");
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user