mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-07-06 04:44:21 +00:00
0132af4611
Profiles can't be hacked anymore, added some security control and removed those malicious "hidden uid" Errors now are now shown correctly while editing the profile The level of the research you're doing in the Blacksmith/Armoury is now displayed in the research queue Hugely fixed the battle system, a big thanks to kirilloid for helping me by providing his formulas :)! Some general clean-up and bug fixing of little errors Added some string constants to the language file (en.php)
81 lines
3.5 KiB
Smarty
81 lines
3.5 KiB
Smarty
<h1>Player profile</h1>
|
|
|
|
<?php
|
|
|
|
#################################################################################
|
|
## -= YOU MAY NOT REMOVE OR CHANGE THIS NOTICE =- ##
|
|
## --------------------------------------------------------------------------- ##
|
|
## Project: TravianZ ##
|
|
## Version: 01.09.2013 ##
|
|
## Filename vacation.php ##
|
|
## Developed by: Advocaite ##
|
|
## Fixed by: Shadow / Skype : cata7007 ##
|
|
## License: TravianZ Project ##
|
|
## Copyright: TravianZ (c) 2010-2013. All rights reserved. ##
|
|
## URLs: http://travian.shadowss.ro ##
|
|
## Source code: http://github.com/Shadowss/TravianZ-by-Shadow/ ##
|
|
## ##
|
|
#################################################################################
|
|
|
|
include("menu.tpl"); ?>
|
|
<form action="spieler.php" method="POST">
|
|
<input type="hidden" name="ft" value="p4">
|
|
|
|
<table cellpadding="1" cellspacing="1" id="del_acc" class="account"><thead>
|
|
<tr>
|
|
<th colspan="2">Vacation Mode</th>
|
|
|
|
</tr>
|
|
</thead><tbody>
|
|
<tr>
|
|
<td class="note" colspan="2">If you plan on being away for an extended period of time and do not wish to set a sitter, you can set your account to Holiday Mode. During this time your account will stop produceing resource , CP , research , trops , etc , and stop receiving attacks , reinforcements, raid , essentially freezing your account. Remember, this just freezes your Travian, not time. If you are a member of Gold Club it will run out during this time and if you have automatic renewal selected, the automatic renewal feature will be cancelled while in Holiday Mode.Please Note you must set min of 2 days vaction mode and NO MORE THEN 14 days.</td>
|
|
</tr><tr>
|
|
|
|
|
|
<div>
|
|
<h4 class="round">General description</h4>
|
|
Use vacation mode to protect your villages during you are away.<br/>
|
|
During the vacation will be inactive next actions:<br/>
|
|
<ul>
|
|
<li>Send or receive troops</li>
|
|
<li>Start new construction order</li>
|
|
<li>Use market</li>
|
|
<li>Train new troops</li>
|
|
<li>Join to an alliance</li>
|
|
<li>Delete account</li>
|
|
</ul></div>
|
|
|
|
<h4 class="round">Conditions</h4>
|
|
<ul>
|
|
<li>No troops in movement</li>
|
|
<li>No troops on way to other villages</li>
|
|
<li>No troops send to reinforcements other villages</li>
|
|
<li>No player have reinforcements on your villages</li>
|
|
<li>Do not have Wonder World</li>
|
|
<li>Do not have any artefacts</li>
|
|
<li>You are no longer in player protections</li>
|
|
<li>Do not have any troops in your traps</li>
|
|
<li>Your account is not in deletion process.</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<th>Want to activate Vacation Mode?</th>
|
|
<td class="del_selection">
|
|
<label><input class="radio" type="radio" name="vac" value="1" /> Yes</label>
|
|
<label><input class="text" type="text" name="vac_days" value="2" /></label>
|
|
</td>
|
|
</tr>
|
|
|
|
</tbody></table>
|
|
<?php
|
|
// Added by Shadow - cata7007@gmail.com / Skype : cata7007
|
|
if($form->getError("vac") != "") {
|
|
echo "<span class=\"error\">".$form->getError("vac")."</span>";
|
|
}
|
|
?>
|
|
<p class="btn"><input type="image" value="" name="s1" id="btn_save" class="dynamic_img" src="img/x.gif" alt="save" /></p>
|
|
</form>
|