Redesign install system & New Medal System

Redesign install system & New Medal System

Artefact Holder			[#ARTEFACT]
WW Builder			[#WWBUILDER]
Great Store			[#GREATSTORE]
Wall Master			[#WALLMASTER]
Hero 99+			[#HERO100]
This commit is contained in:
novgorodschi catalin
2026-05-26 10:42:28 +03:00
parent 8c3ab3e5eb
commit fe19587c90
21 changed files with 907 additions and 1389 deletions
+54 -50
View File
@@ -1,57 +1,61 @@
<?php
<?php
#################################################################################
## -= YOU MAY NOT REMOVE OR CHANGE THIS NOTICE =- ##
## --------------------------------------------------------------------------- ##
## Project: TravianZ ##
## Filename end.php ##
## Developed by: Dzoki ##
## License: TravianZ Project ##
## Copyright: TravianZ (c) 2010-2026. All rights reserved. ##
## URLs: https://travianz.org ##
## https://github.com/Shadowss/TravianZ ##
## ##
## Filename : end.tpl ##
## Type : Install Panel Frontend & Backend ##
## --------------------------------------------------------------------------- ##
## Developed by : Dzoki (Original) ##
## Refactored by : Shadow ##
## Redesign by : Shadow ##
## --------------------------------------------------------------------------- ##
## Contact : cata7007@gmail.com ##
## Project : TravianZ ##
## GitHub : https://github.com/Shadowss/TravianZ ##
## --------------------------------------------------------------------------- ##
## License : TravianZ Project ##
## Copyright : TravianZ (c) 2010-2025. All rights reserved. ##
## --------------------------------------------------------------------------- ##
#################################################################################
?>
<p>
Thanks for installing TravianZ.
<h4>Please remove/rename the installation folder.</h4>
All the files are placed. The database is created, so you can now start playing on your own Travian.
</p>
<ul>
<li><h4>After Installation</h4></li>
<li>Delete install folder (sudo rm -R install)</li>
<li>CHMOD GameEngine back to 755 (sudo chmod -R 755 GameEngine)</li>
<li>CHMOD Prevention to 777 (sudo chmod -R 777 GameEngine/Prevention)</li>
<li>CHMOD Notes to 777 (sudo chmod -R 777 GameEngine/Notes)</li>
<li>CHMOD var/log to 777 (sudo chmod -R 777 var/log)</li>
</ul>
<ul>
<li><h4>After Installation</h4></li>
<li>Protect folder /Admin with password protect directory</li>
</ul>
<?php include("../GameEngine/config.php");
$time = time();
rename("../install/","../installed_".$time);
touch('../var/installed');
?>
<p>
<center><font size="4"><a href="<?php echo HOMEPAGE; ?>">> My TravianZ homepage <</font></a></center>
</p>
</br>
<center>
<h2>Please support our developers and donate.</h2>
</br>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="QHUTVY5MLECFQ">
<input type="image" src="https://www.paypalobjects.com/en_US/GB/i/btn/btn_donateCC_LG.gif" border="0" name="submit" alt="PayPal The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypalobjects.com/en_GB/i/scr/pixel.gif" width="1" height="1">
</form>
</center>
include("../GameEngine/config.php"); $time=time(); @rename("../install/","../installed_".$time); @touch('../var/installed'); ?>
<div class="card" style="text-align:center;">
<h2 style="margin:0 0 8px;">🎉 Installation Complete!</h2>
<p style="color:#475569;">Thanks for installing TravianZ. Please remove the install folder.</p>
<div style="display:inline-block;text-align:left;background:#0f172a;color:#e2e8f0;border-radius:10px;padding:12px 16px;font-family:ui-monospace;font-size:13px;line-height:1.6;">
rm -R install<br>
chmod -R 755 GameEngine<br>
chmod -R 777 GameEngine/Prevention<br>
chmod -R 777 GameEngine/Notes<br>
chmod -R 777 var/log
</div>
<div style="margin-top:16px;"><a class="btn" href="<?php echo HOMEPAGE; ?>">Go to Homepage →</a></div>
</div>
<div class="card">
<h3 style="margin:0 0 12px;text-align:center;">🚀 Next Steps</h3>
<div class="grid-2" style="gap:14px;">
<div style="background:#f8fafc;border:1px solid #e5e7eb;border-radius:12px;padding:14px;">
<b>🔒 Secure Your Server</b>
<p style="margin:6px 0 0;color:#475569;font-size:14px;">Protect /Admin with .htpasswd, enable HTTPS, and set cronjobs for automated tasks.</p>
</div>
<div style="background:#f8fafc;border:1px solid #e5e7eb;border-radius:12px;padding:14px;">
<b>📖 Read the Docs</b>
<p style="margin:6px 0 0;color:#475569;font-size:14px;">Learn about speed settings, Natars, and world configuration in the GitHub Wiki.</p>
</div>
<div style="background:#f8fafc;border:1px solid #e5e7eb;border-radius:12px;padding:14px;">
<b>💬 Join Community</b>
<p style="margin:6px 0 0;color:#475569;font-size:14px;">Get help, share mods, and report bugs on GitHub Discussions.</p>
</div>
<div style="background:#f8fafc;border:1px solid #e5e7eb;border-radius:12px;padding:14px;">
<b>⭐ Star on GitHub</b>
<p style="margin:6px 0 0;color:#475569;font-size:14px;">If you like TravianZ, star the repo to support the project.</p>
</div>
</div>
<div style="text-align:center;margin-top:16px;display:flex;gap:10px;justify-content:center;flex-wrap:wrap;">
<a class="btn" style="background:#0f172a;" href="https://github.com/Shadowss/TravianZ" target="_blank">GitHub</a>
<a class="btn" style="background:#16a34a;" href="https://github.com/Shadowss/TravianZ/wiki" target="_blank">Documentation</a>
<a class="btn" style="background:#64748b;" href="mailto:cata7007@gmail.com">Contact Support</a>
</div>
</div>