mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-07-06 04:44:21 +00:00
cc78105a33
Vacation mode is enable for everyone for testing as Travian Official have vacation
Must code the condition of vacation
9/9 Conditions
No troops on movement
No troops in movement for other villages
No troops send for reinforcements
Don`t have any troops in your account as reinforcements from other players
Don`t have a Wonder World
Don`t have an artifact
No longer on protection period
Don`t have any troops trapped
Don`t have account on deletion process
16 lines
881 B
Smarty
16 lines
881 B
Smarty
<div id="textmenu">
|
|
<a href="spieler.php?uid=<?php if(isset($_GET['uid'])) { echo $_GET['uid']; } else { echo $session->uid; } ?>" <?php if(isset($_GET['uid'])) { echo "class=\"selected\""; } ?>>Overview</a>
|
|
| <a href="spieler.php?s=1" <?php if(isset($_GET['s']) && $_GET['s'] == 1) { echo "class=\"selected\""; } ?>>Profile</a>
|
|
| <a href="spieler.php?s=2" <?php if(isset($_GET['s']) && $_GET['s'] == 2) { echo "class=\"selected\""; } ?>>Preferences</a>
|
|
| <a href="spieler.php?s=3" <?php if(isset($_GET['s']) && $_GET['s'] == 3) { echo "class=\"selected\""; } ?>>Account</a>
|
|
| <a href="spieler.php?s=5" <?php if(isset($_GET['s']) && $_GET['s'] == 5) { echo "class=\"selected\""; } ?>>Vacation</a>
|
|
<?php
|
|
if(GP_ENABLE) {
|
|
?>
|
|
| <a href="spieler.php?s=4" <?php if(isset($_GET['s']) && $_GET['s'] == 4) { echo "class=\"selected\""; } ?>>Graphic pack</a>
|
|
<?php
|
|
}
|
|
?>
|
|
|
|
</div>
|