mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-07-04 11:54:25 +00:00
79 lines
2.5 KiB
Smarty
79 lines
2.5 KiB
Smarty
<?php
|
|
|
|
#################################################################################
|
|
## -= YOU MAY NOT REMOVE OR CHANGE THIS NOTICE =- ##
|
|
## --------------------------------------------------------------------------- ##
|
|
## Project: TravianZ ##
|
|
## Version: 06.05.2026 ##
|
|
## Filename special.tpl ##
|
|
## Refactored by Shadow ##
|
|
## License: TravianZ Project ##
|
|
## Copyright: TravianZ (c) 2010-2026. All rights reserved. ##
|
|
## URLs: http://travianz.org ##
|
|
## Source code: http://github.com/Shadowss/TravianZ/ ##
|
|
## ##
|
|
#################################################################################
|
|
|
|
?>
|
|
|
|
|
|
<table cellpadding="1" cellspacing="1" id="support_mh">
|
|
<thead>
|
|
<tr>
|
|
<th><?php echo TZ_SUPPORT_AND_MULTIHUNTER; ?></th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<!-- =========================
|
|
SUPPORT SECTION
|
|
========================= -->
|
|
<tr>
|
|
<td>
|
|
<b><?php echo TZ_SUPPORT; ?></b><br>
|
|
<?php echo TZ_THE_SUPPORT_IS_A_GROUP_OF_EXPERIEN; ?><br />
|
|
|
|
<?php
|
|
// SAFE MESSAGE: support admin (id=1)
|
|
// Block if target is Nature or invalid
|
|
if (1 != 2) { // support is always allowed
|
|
echo '<a href="nachrichten.php?t=1&id=1">» Write message</a>';
|
|
}
|
|
?>
|
|
</td>
|
|
</tr>
|
|
|
|
<!-- =========================
|
|
MULTIHUNTER SECTION
|
|
========================= -->
|
|
<tr>
|
|
<td>
|
|
<b><?php echo TZ_MULTIHUNTER; ?></b><br>
|
|
<?php echo TZ_THE_MULTIHUNTERS_ARE_RESPONSIBLE_F; ?>
|
|
<a href="rules.php"><b><?php echo GAME_RULES; ?></b></a><?php echo TZ_ML_QUESTIONS_MULTIHUNTER; ?><br />
|
|
|
|
<?php
|
|
// =========================================================
|
|
// SAFE RULES:
|
|
// id = 0 (Multihunter account / system account)
|
|
// BLOCK if Nature / invalid target system
|
|
// =========================================================
|
|
|
|
$targetId = 0;
|
|
|
|
// Nature / system protection (based on your engine rule)
|
|
$isNature = ($targetId == 2); // Nature UID always 2 (your rule)
|
|
|
|
if (!$isNature && $targetId != 2) {
|
|
echo '<a href="nachrichten.php?t=1&id=0">» Write message</a>';
|
|
} else {
|
|
echo '<span class="none">» Write message (disabled)</span>';
|
|
}
|
|
?>
|
|
</td>
|
|
</tr>
|
|
|
|
</tbody>
|
|
</table>
|