diff --git a/Admin/Templates/config.tpl b/Admin/Templates/config.tpl index ddb0b738..c50caaaf 100644 --- a/Admin/Templates/config.tpl +++ b/Admin/Templates/config.tpl @@ -221,7 +221,7 @@ if($_SESSION['access'] < 9) die(ACCESS_DENIED_ADMIN); Enabled" : "Disabled"; ?> - Display wonder in profile ?Enable (Disable) the display of the wonder in the player profile, opposite the corresponding village in which it is located + Display WoW in profile ?Enable (Disable) the display of the wonder in the player profile, opposite the corresponding village in which it is located Enabled" : "Disabled"; ?> @@ -247,6 +247,10 @@ if($_SESSION['access'] < 9) die(ACCESS_DENIED_ADMIN); Medal Veteran Player 5a ?Enable (Disable) medal achieved for playing 5 years of Travian Enabled" : "Disabled"; ?> + + + Medal Veteran Player 10a ?Enable (Disable) medal achieved for playing 10 years of Travian + Enabled" : "Disabled"; ?> diff --git a/Admin/Templates/editNewFunctions.tpl b/Admin/Templates/editNewFunctions.tpl index 735763d7..bfd8e584 100644 --- a/Admin/Templates/editNewFunctions.tpl +++ b/Admin/Templates/editNewFunctions.tpl @@ -88,7 +88,7 @@ if($_SESSION['access'] < 9) die(ACCESS_DENIED_ADMIN); - + + + + +
Display wonder in profile ?Enable (Disable) the display of the wonder in the player profile, opposite the corresponding village in which it is locatedDisplay WoW in profile ?Enable (Disable) the display of the wonder in the player profile, opposite the corresponding village in which it is located
Medal Veteran Player 10a ?Enable (Disable) medal achieved for playing 10 years of Travian + +

diff --git a/GameEngine/Admin/Mods/editAdminInfo.php b/GameEngine/Admin/Mods/editAdminInfo.php index 2252e69c..caa47e1e 100755 --- a/GameEngine/Admin/Mods/editAdminInfo.php +++ b/GameEngine/Admin/Mods/editAdminInfo.php @@ -62,6 +62,7 @@ $NEW_FUNCTIONS_DISPLAY_LINKS = (NEW_FUNCTIONS_DISPLAY_LINKS == false ? 'false' : 'true'); $NEW_FUNCTIONS_MEDAL_3YEAR = (NEW_FUNCTIONS_MEDAL_3YEAR == false ? 'false' : 'true'); $NEW_FUNCTIONS_MEDAL_5YEAR = (NEW_FUNCTIONS_MEDAL_5YEAR == false ? 'false' : 'true'); + $NEW_FUNCTIONS_MEDAL_10YEAR = (NEW_FUNCTIONS_MEDAL_10YEAR == false ? 'false' : 'true'); $text = file_get_contents("constant_format.tpl"); $text = preg_replace("'%ERRORREPORT%'", $ERRORREPORT, $text); @@ -151,6 +152,7 @@ $text = preg_replace("'%NEW_FUNCTIONS_DISPLAY_LINKS%'", $NEW_FUNCTIONS_DISPLAY_LINKS, $text); $text = preg_replace("'%NEW_FUNCTIONS_MEDAL_3YEAR%'", $NEW_FUNCTIONS_MEDAL_3YEAR, $text); $text = preg_replace("'%NEW_FUNCTIONS_MEDAL_5YEAR%'", $NEW_FUNCTIONS_MEDAL_5YEAR, $text); + $text = preg_replace("'%NEW_FUNCTIONS_MEDAL_10YEAR%'", $NEW_FUNCTIONS_MEDAL_10YEAR, $text); // PLUS settings need to be kept intact $text = preg_replace("'%PLUS_TIME%'", PLUS_TIME, $text); diff --git a/GameEngine/Admin/Mods/editExtraSet.php b/GameEngine/Admin/Mods/editExtraSet.php index 9be94fc4..a74d0686 100755 --- a/GameEngine/Admin/Mods/editExtraSet.php +++ b/GameEngine/Admin/Mods/editExtraSet.php @@ -61,6 +61,7 @@ $NEW_FUNCTIONS_DISPLAY_LINKS = (NEW_FUNCTIONS_DISPLAY_LINKS == false ? 'false' : 'true'); $NEW_FUNCTIONS_MEDAL_3YEAR = (NEW_FUNCTIONS_MEDAL_3YEAR == false ? 'false' : 'true'); $NEW_FUNCTIONS_MEDAL_5YEAR = (NEW_FUNCTIONS_MEDAL_5YEAR == false ? 'false' : 'true'); + $NEW_FUNCTIONS_MEDAL_10YEAR = (NEW_FUNCTIONS_MEDAL_10YEAR == false ? 'false' : 'true'); $text = file_get_contents("constant_format.tpl"); $text = preg_replace("'%ERRORREPORT%'", ERROR_REPORT, $text); @@ -148,6 +149,7 @@ $text = preg_replace("'%NEW_FUNCTIONS_DISPLAY_LINKS%'", $NEW_FUNCTIONS_DISPLAY_LINKS, $text); $text = preg_replace("'%NEW_FUNCTIONS_MEDAL_3YEAR%'", $NEW_FUNCTIONS_MEDAL_3YEAR, $text); $text = preg_replace("'%NEW_FUNCTIONS_MEDAL_5YEAR%'", $NEW_FUNCTIONS_MEDAL_5YEAR, $text); + $text = preg_replace("'%NEW_FUNCTIONS_MEDAL_10YEAR%'", $NEW_FUNCTIONS_MEDAL_10YEAR, $text); // PLUS settings need to be kept intact $text = preg_replace("'%PLUS_TIME%'", PLUS_TIME, $text); diff --git a/GameEngine/Admin/Mods/editLogSet.php b/GameEngine/Admin/Mods/editLogSet.php index 84088de7..7300f457 100755 --- a/GameEngine/Admin/Mods/editLogSet.php +++ b/GameEngine/Admin/Mods/editLogSet.php @@ -57,6 +57,7 @@ $NEW_FUNCTIONS_DISPLAY_LINKS = (NEW_FUNCTIONS_DISPLAY_LINKS == false ? 'false' : 'true'); $NEW_FUNCTIONS_MEDAL_3YEAR = (NEW_FUNCTIONS_MEDAL_3YEAR == false ? 'false' : 'true'); $NEW_FUNCTIONS_MEDAL_5YEAR = (NEW_FUNCTIONS_MEDAL_5YEAR == false ? 'false' : 'true'); + $NEW_FUNCTIONS_MEDAL_10YEAR = (NEW_FUNCTIONS_MEDAL_10YEAR == false ? 'false' : 'true'); $text = file_get_contents("constant_format.tpl"); $text = preg_replace("'%ERRORREPORT%'", $ERRORREPORT, $text); @@ -148,6 +149,7 @@ $text = preg_replace("'%NEW_FUNCTIONS_DISPLAY_LINKS%'", $NEW_FUNCTIONS_DISPLAY_LINKS, $text); $text = preg_replace("'%NEW_FUNCTIONS_MEDAL_3YEAR%'", $NEW_FUNCTIONS_MEDAL_3YEAR, $text); $text = preg_replace("'%NEW_FUNCTIONS_MEDAL_5YEAR%'", $NEW_FUNCTIONS_MEDAL_5YEAR, $text); + $text = preg_replace("'%NEW_FUNCTIONS_MEDAL_10YEAR%'", $NEW_FUNCTIONS_MEDAL_10YEAR, $text); // PLUS settings need to be kept intact $text = preg_replace("'%PLUS_TIME%'", PLUS_TIME, $text); diff --git a/GameEngine/Admin/Mods/editNewFunctions.php b/GameEngine/Admin/Mods/editNewFunctions.php index c74c90e8..b3f794d6 100644 --- a/GameEngine/Admin/Mods/editNewFunctions.php +++ b/GameEngine/Admin/Mods/editNewFunctions.php @@ -119,6 +119,7 @@ $text = preg_replace("'%NEW_FUNCTIONS_DISPLAY_LINKS%'", $_POST['new_functions_display_links'], $text); $text = preg_replace("'%NEW_FUNCTIONS_MEDAL_3YEAR%'", $_POST['new_functions_medal_3year'], $text); $text = preg_replace("'%NEW_FUNCTIONS_MEDAL_5YEAR%'", $_POST['new_functions_medal_5year'], $text); + $text = preg_replace("'%NEW_FUNCTIONS_MEDAL_10YEAR%'", $_POST['new_functions_medal_10year'], $text); // PLUS settings need to be kept intact $text = preg_replace("'%PLUS_TIME%'", PLUS_TIME, $text); diff --git a/GameEngine/Admin/Mods/editNewsboxSet.php b/GameEngine/Admin/Mods/editNewsboxSet.php index 92f7af9b..7eb76449 100755 --- a/GameEngine/Admin/Mods/editNewsboxSet.php +++ b/GameEngine/Admin/Mods/editNewsboxSet.php @@ -63,6 +63,7 @@ $NEW_FUNCTIONS_DISPLAY_LINKS = (NEW_FUNCTIONS_DISPLAY_LINKS == false ? 'false' : 'true'); $NEW_FUNCTIONS_MEDAL_3YEAR = (NEW_FUNCTIONS_MEDAL_3YEAR == false ? 'false' : 'true'); $NEW_FUNCTIONS_MEDAL_5YEAR = (NEW_FUNCTIONS_MEDAL_5YEAR == false ? 'false' : 'true'); + $NEW_FUNCTIONS_MEDAL_10YEAR = (NEW_FUNCTIONS_MEDAL_10YEAR == false ? 'false' : 'true'); $text = file_get_contents("constant_format.tpl"); $text = preg_replace("'%ERRORREPORT%'", $ERRORREPORT, $text); @@ -154,6 +155,7 @@ $text = preg_replace("'%NEW_FUNCTIONS_DISPLAY_LINKS%'", $NEW_FUNCTIONS_DISPLAY_LINKS, $text); $text = preg_replace("'%NEW_FUNCTIONS_MEDAL_3YEAR%'", $NEW_FUNCTIONS_MEDAL_3YEAR, $text); $text = preg_replace("'%NEW_FUNCTIONS_MEDAL_5YEAR%'", $NEW_FUNCTIONS_MEDAL_5YEAR, $text); + $text = preg_replace("'%NEW_FUNCTIONS_MEDAL_10YEAR%'", $NEW_FUNCTIONS_MEDAL_10YEAR, $text); // PLUS settings need to be kept intact $text = preg_replace("'%PLUS_TIME%'", PLUS_TIME, $text); diff --git a/GameEngine/Admin/Mods/editPlusSet.php b/GameEngine/Admin/Mods/editPlusSet.php index e969e93b..c4b2cc07 100644 --- a/GameEngine/Admin/Mods/editPlusSet.php +++ b/GameEngine/Admin/Mods/editPlusSet.php @@ -45,6 +45,7 @@ $NEW_FUNCTIONS_DISPLAY_LINKS = (NEW_FUNCTIONS_DISPLAY_LINKS == false ? 'false' : 'true'); $NEW_FUNCTIONS_MEDAL_3YEAR = (NEW_FUNCTIONS_MEDAL_3YEAR == false ? 'false' : 'true'); $NEW_FUNCTIONS_MEDAL_5YEAR = (NEW_FUNCTIONS_MEDAL_5YEAR == false ? 'false' : 'true'); + $NEW_FUNCTIONS_MEDAL_10YEAR = (NEW_FUNCTIONS_MEDAL_10YEAR == false ? 'false' : 'true'); // SERVER SETTINGS - we need to keep these intact $text = preg_replace("'%ERRORREPORT%'", ERROR_REPORT, $text); @@ -132,6 +133,7 @@ $text = preg_replace("'%NEW_FUNCTIONS_DISPLAY_LINKS%'", $NEW_FUNCTIONS_DISPLAY_LINKS, $text); $text = preg_replace("'%NEW_FUNCTIONS_MEDAL_3YEAR%'", $NEW_FUNCTIONS_MEDAL_3YEAR, $text); $text = preg_replace("'%NEW_FUNCTIONS_MEDAL_5YEAR%'", $NEW_FUNCTIONS_MEDAL_5YEAR, $text); + $text = preg_replace("'%NEW_FUNCTIONS_MEDAL_10YEAR%'", $NEW_FUNCTIONS_MEDAL_10YEAR, $text); // PLUS SETTINGS $text = preg_replace("'%PLUS_TIME%'", $_POST['plus_time'], $text); diff --git a/GameEngine/Admin/Mods/editServerSet.php b/GameEngine/Admin/Mods/editServerSet.php index e4989dd1..fd76a391 100755 --- a/GameEngine/Admin/Mods/editServerSet.php +++ b/GameEngine/Admin/Mods/editServerSet.php @@ -56,6 +56,7 @@ $NEW_FUNCTIONS_DISPLAY_LINKS = (NEW_FUNCTIONS_DISPLAY_LINKS == false ? 'false' : 'true'); $NEW_FUNCTIONS_MEDAL_3YEAR = (NEW_FUNCTIONS_MEDAL_3YEAR == false ? 'false' : 'true'); $NEW_FUNCTIONS_MEDAL_5YEAR = (NEW_FUNCTIONS_MEDAL_5YEAR == false ? 'false' : 'true'); + $NEW_FUNCTIONS_MEDAL_10YEAR = (NEW_FUNCTIONS_MEDAL_10YEAR == false ? 'false' : 'true'); $text = file_get_contents("constant_format.tpl"); $text = preg_replace("'%ERRORREPORT%'", $_POST['error'], $text); @@ -143,6 +144,7 @@ $text = preg_replace("'%NEW_FUNCTIONS_DISPLAY_LINKS%'", $NEW_FUNCTIONS_DISPLAY_LINKS, $text); $text = preg_replace("'%NEW_FUNCTIONS_MEDAL_3YEAR%'", $NEW_FUNCTIONS_MEDAL_3YEAR, $text); $text = preg_replace("'%NEW_FUNCTIONS_MEDAL_5YEAR%'", $NEW_FUNCTIONS_MEDAL_5YEAR, $text); + $text = preg_replace("'%NEW_FUNCTIONS_MEDAL_10YEAR%'", $NEW_FUNCTIONS_MEDAL_10YEAR, $text); // PLUS settings need to be kept intact $text = preg_replace("'%PLUS_TIME%'", PLUS_TIME, $text); diff --git a/Templates/Manual/0.tpl b/Templates/Manual/0.tpl index 26456146..402212f9 100644 --- a/Templates/Manual/0.tpl +++ b/Templates/Manual/0.tpl @@ -15,7 +15,7 @@ -
+
  • The buildings
  • @@ -25,8 +25,12 @@
  • Infrastructure
  • -
    -
  • Travian FAQ new window
    This ingame help just gives you brief information. More information is available at the Fandom Travian Wiki.

  • +
    + +
  • New features
    These are new features that you will not find in the real version of the game Travian T3.6. Here you can get acquainted with all new features in more detail.

  • + + +
  • Travian FAQ new window
    This ingame help just gives you brief information. More information is available at the Fandom Travian Wiki.
  • diff --git a/Templates/Manual/00.tpl b/Templates/Manual/00.tpl index 26456146..402212f9 100644 --- a/Templates/Manual/00.tpl +++ b/Templates/Manual/00.tpl @@ -15,7 +15,7 @@ -
    +
  • The buildings
  • @@ -25,8 +25,12 @@
  • Infrastructure
  • -
    -
  • Travian FAQ new window
    This ingame help just gives you brief information. More information is available at the Fandom Travian Wiki.

  • +
    + +
  • New features
    These are new features that you will not find in the real version of the game Travian T3.6. Here you can get acquainted with all new features in more detail.

  • + + +
  • Travian FAQ new window
    This ingame help just gives you brief information. More information is available at the Fandom Travian Wiki.
  • diff --git a/Templates/Manual/1111.tpl b/Templates/Manual/1111.tpl new file mode 100644 index 00000000..cf75422d --- /dev/null +++ b/Templates/Manual/1111.tpl @@ -0,0 +1,10 @@ +

    Display oasis in profile Display oasis in profile

    + +
    If there is a captured oasis in the village, it will be displayed in the player's profile in front of the corresponding village with the appropriate type of resource and a bonus for production. This function was presented in Travian T4.
    + + + + + + + \ No newline at end of file diff --git a/Templates/Manual/1112.tpl b/Templates/Manual/1112.tpl new file mode 100644 index 00000000..aefced82 --- /dev/null +++ b/Templates/Manual/1112.tpl @@ -0,0 +1,10 @@ +

    Alliance invitation message Alliance invitation message

    + +
    If someone from the players will be sent an invitation to join the alliance, then the player will be notified an in-game message.
    + + + + + + + \ No newline at end of file diff --git a/Templates/Manual/1113.tpl b/Templates/Manual/1113.tpl new file mode 100644 index 00000000..ea3bd1b4 --- /dev/null +++ b/Templates/Manual/1113.tpl @@ -0,0 +1,28 @@ +

    New Alliance & Embassy Mechanics New Alliance & Embassy Mechanics

    + +

    Introduction


    +The Embassy and Alliance mechanics always felt a bit like cheating to me. Especially with the Embassy building having a given "capacity", which means only 3/6/9/12/... and up to 60 members could be in the alliance, depending on the level of your Embassy. +

    +Now, this is all cool and dandy but once you had an Embassy on level 20 and you reached 60 alliance members, you were free to demolish the building completely and nothing ever happened. You wouldn't be able to switch alliances but that was about it. The capacity property for Embassy no longer applied. If it did, you would not be able to demolish it even a single level down to 19 - because with full 60 members, the Embassy wouldn't be able to hold them at level 19 anymore. +

    +So I decided to pepper the game a little, making Embassy a somewhat more visible chess-piece on the board. +

    +

    New Mechanics


    +In order to make things interesting, I've developed a whole new set of rules for demolition and battle-destruction of the Embassy. It's a little bit complicated but actually mirrors the "capacity" property of the alliance perfectly. +

    +The main change is that people can't really demolish their Embassies without a side-effect of being punished once it goes too low. For an alliance member, this would mean their Embassy must never go below level 1. If it does, they are warned and subsequently removed from their alliance. +

    +Similarly, for alliance founders, this actually presents even more of a challenge, since they are the ones who need to keep their alliance running smoothly. For them, demolition of an Embassy will not be allowed below a level that can still hold the current number of alliance members. +

    +Now, in the peculiar situation when other players/alliances actually attack the founder's village where their Embassy stands, and subsequently target that Embassy with their catapults and rams - that situation can bring a whole lot of trouble. If there are no other Embassies in other founder's villages on a sufficient level to hold all the alliance members, the alliance could be dispersed. The only exception would be if any other member of the alliance had a sufficiently developed Embassy - in which case that member will be auto-elected to a leadership position and will save the alliance. If no such player is found, the alliance will be completely dispersed. +

    +

    Detailed information


    +For a more graphical and in-depth information about how this new system works, you can visit this Google Presentation. +
    + + + + + + + \ No newline at end of file diff --git a/Templates/Manual/1114.tpl b/Templates/Manual/1114.tpl new file mode 100644 index 00000000..69aff3df --- /dev/null +++ b/Templates/Manual/1114.tpl @@ -0,0 +1,10 @@ +

    New forum post message New forum post message

    + +
    If the player leaves at least one message in the forum thread, he will receive in-game messages that someone else has left a new message in the same thread (i.e. is technically "subscribed to").
    + + + + + + + \ No newline at end of file diff --git a/Templates/Manual/1115.tpl b/Templates/Manual/1115.tpl new file mode 100644 index 00000000..9d3d86fb --- /dev/null +++ b/Templates/Manual/1115.tpl @@ -0,0 +1,12 @@ +

    Tribes images in profile Tribes images in profile

    + +
    Using this innovation, any player can add to the description of his profile an image of his tribe with a small description (Romans, Teutons, Gauls).
    +

    +
    + + + + + + + \ No newline at end of file diff --git a/Templates/Manual/1116.tpl b/Templates/Manual/1116.tpl new file mode 100644 index 00000000..41984dfd --- /dev/null +++ b/Templates/Manual/1116.tpl @@ -0,0 +1,12 @@ +

    MHs images in profile MHs images in profile

    + +
    In fact, for players this is a useless function, since it is intended only for Administrators and Multihunters. With it, Administrators and Multihunters will be able to add to their profile descriptions various interesting images with descriptions to them.
    +

    +
    + + + + + + + \ No newline at end of file diff --git a/Templates/Manual/1117.tpl b/Templates/Manual/1117.tpl new file mode 100644 index 00000000..6c8695eb --- /dev/null +++ b/Templates/Manual/1117.tpl @@ -0,0 +1,10 @@ +

    Display artifact in profile Display artifact in profile

    + +
    If there is an artifact in one of the villages, this will be displayed in the player's profile in front of the corresponding village in which it is located. This function was presented in Travian T4.
    + + + + + + + \ No newline at end of file diff --git a/Templates/Manual/1118.tpl b/Templates/Manual/1118.tpl new file mode 100644 index 00000000..9e719fcd --- /dev/null +++ b/Templates/Manual/1118.tpl @@ -0,0 +1,10 @@ +

    Display WoW in profile Display WoW in profile

    + +
    If in the village there is a playground for the construction of the Wonder of the World, this will be displayed in the profile opposite the corresponding village. This function was presented in Travian T4.
    + + + + + + + \ No newline at end of file diff --git a/Templates/Manual/1119.tpl b/Templates/Manual/1119.tpl new file mode 100644 index 00000000..b0ddb23f --- /dev/null +++ b/Templates/Manual/1119.tpl @@ -0,0 +1,10 @@ +

    Vacation Mode Vacation Mode

    + +
    Vacation mode allows you to protect your empire from any hostile actions of other players during your long absence. True, for this there are certain conditions that will entail a backlog in the development of your empire. This function was presented in Travian T4.
    + + + + + + + \ No newline at end of file diff --git a/Templates/Manual/1120.tpl b/Templates/Manual/1120.tpl new file mode 100644 index 00000000..558b0c16 --- /dev/null +++ b/Templates/Manual/1120.tpl @@ -0,0 +1,10 @@ +

    Catapult targets Catapult targets

    + +
    If you send the catapults to a normal attack, you can see in the rally point which targets you set for the attack. This function was presented in Travian T4.
    + + + + + + + \ No newline at end of file diff --git a/Templates/Manual/1121.tpl b/Templates/Manual/1121.tpl new file mode 100644 index 00000000..a78a9a32 --- /dev/null +++ b/Templates/Manual/1121.tpl @@ -0,0 +1,10 @@ +

    Manual on Nature and Natars Manual on Nature and Natars

    + +
    With the help of this information in the manual, you can find a description of the forces of Nature and Natars.
    + + + + + + + \ No newline at end of file diff --git a/Templates/Manual/1122.tpl b/Templates/Manual/1122.tpl new file mode 100644 index 00000000..db6eed5b --- /dev/null +++ b/Templates/Manual/1122.tpl @@ -0,0 +1,10 @@ +

    Direct links placement Direct links placement

    + +
    The location of the Direct links is changing. In the original Travian T3.6 Direct links are placed in the right menu below the list of villages which is not entirely convenient. If this option is enabled then Direct links will be placed in the left menu that is much more convenient.
    + + + + + + + \ No newline at end of file diff --git a/Templates/Manual/1123.tpl b/Templates/Manual/1123.tpl new file mode 100644 index 00000000..13cbfcee --- /dev/null +++ b/Templates/Manual/1123.tpl @@ -0,0 +1,12 @@ +

    Medal Veteran Player Medal Veteran Player

    + +
    The medal of which is awarded to players losing by the same email address of 3 or more years. Can be added to the profile description. This function was presented in Travian T4.
    +

    +
    + + + + + + + \ No newline at end of file diff --git a/Templates/Manual/1124.tpl b/Templates/Manual/1124.tpl new file mode 100644 index 00000000..4c93f08b --- /dev/null +++ b/Templates/Manual/1124.tpl @@ -0,0 +1,12 @@ +

    Medal Veteran Player 5a Medal Veteran Player 5a

    + +
    The medal of which is awarded to players losing by the same email address of 5 or more years. Can be added to the profile description. This function was presented in Travian T4.
    +

    +
    + + + + + + + \ No newline at end of file diff --git a/Templates/Manual/1125.tpl b/Templates/Manual/1125.tpl new file mode 100644 index 00000000..9d25c6dc --- /dev/null +++ b/Templates/Manual/1125.tpl @@ -0,0 +1,12 @@ +

    Medal Veteran Player 10a Medal Veteran Player 10a

    + +
    The medal of which is awarded to players losing by the same email address of 10 or more years. Can be added to the profile description. This function was presented in Travian T4.
    +

    +
    + + + + + + + \ No newline at end of file diff --git a/Templates/Manual/1331.tpl b/Templates/Manual/1331.tpl new file mode 100644 index 00000000..848d0bf8 --- /dev/null +++ b/Templates/Manual/1331.tpl @@ -0,0 +1,27 @@ +

    New features

    + + + + + + + + + \ No newline at end of file diff --git a/Templates/Manual/4.tpl b/Templates/Manual/4.tpl index 4583425f..f58b9080 100644 --- a/Templates/Manual/4.tpl +++ b/Templates/Manual/4.tpl @@ -15,7 +15,7 @@ -
    +
  • The buildings
  • @@ -25,8 +25,12 @@
  • Infrastructure
  • -
    -
  • Travian FAQ new window
    This ingame help just gives you brief information. More information is available at the Fandom Travian Wiki.

  • +
    + +
  • New features
    These are new features that you will not find in the real version of the game Travian T3.6. Here you can get acquainted with all new features in more detail.

  • + + +
  • Travian FAQ new window
    This ingame help just gives you brief information. More information is available at the Fandom Travian Wiki.
  • diff --git a/Templates/Profile/medal.php b/Templates/Profile/medal.php index 75546ffc..eff87757 100644 --- a/Templates/Profile/medal.php +++ b/Templates/Profile/medal.php @@ -106,6 +106,9 @@ if(NEW_FUNCTIONS_MEDAL_5YEAR){ $profiel = preg_replace("/\[#g2301]/is",'', $profiel, 1); } +if(NEW_FUNCTIONS_MEDAL_10YEAR){ + $profiel = preg_replace("/\[#g2302]/is",'', $profiel, 1); +} //de lintjes diff --git a/Templates/Profile/profile.tpl b/Templates/Profile/profile.tpl index 6f9d1e34..1df1b5ad 100644 --- a/Templates/Profile/profile.tpl +++ b/Templates/Profile/profile.tpl @@ -185,6 +185,15 @@ MEDAL CATEGORY: "; } + if(NEW_FUNCTIONS_MEDAL_10YEAR){ + echo " + veteran_10a + + + [#g2302] + "; + } + // Added by Shadow - cata7007@gmail.com / Skype : cata7007 if(NEW_FUNCTIONS_TRIBE_IMAGES){ if($session->userinfo['tribe'] == 1){ diff --git a/Templates/menu.tpl b/Templates/menu.tpl index 181a73ed..6a592891 100644 --- a/Templates/menu.tpl +++ b/Templates/menu.tpl @@ -54,7 +54,7 @@ div.c1 {text-align: center} // no PLUS needed for Support if ($_SESSION['id_user'] != 1) { ?> - Travian Plus + TravianZ Plus Error creating constant.php + + + Medal Veteran Player 10a: + + +