• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

hello

Newbie Spellweaver
Joined
Nov 7, 2012
Messages
5
Reaction score
0
I also need tabs with shop 1 and shop 2 like GoTravSpeed

 
Experienced Elementalist
Joined
Jul 24, 2011
Messages
268
Reaction score
58
Hello CezaRone,

you have to edit the file /Templates/menu.tpl to do so.

Just put in your code somewhere in this part and link it to your shop pages.

PHP:
<div id="side_navi">
        <a id="logo" href="<?php echo HOMEPAGE; ?>" name="logo"><img src="img/x.gif" <?php if($session->plus) { echo "class=\"logo_plus\""; } ?> alt="Travian"></a>


        <p><a href="<?php echo HOMEPAGE; ?>"><?php echo HOME; ?></a> <a href="spieler.php?uid=<?php echo $session->uid; ?>"><?php echo PROFILE; ?></a> <a href="#" onclick="return Popup(0,0,1);"><?php echo INSTRUCT; ?></a> <?php if($session->access == MULTIHUNTER) {

                    echo "<a href=\"Admin/admin.php\"><font color=\"Blue\">Multihunter Panel</font></a>";
                    } ?> <?php if($session->access == ADMIN) {
                    echo "<a href=\"Admin/admin.php\"><font color=\"Red\">".ADMIN_PANEL."</font></a>";
                    echo "<a href=\"massmessage.php\">".MASS_MESSAGE."</a>";
                    echo "<a href=\"sysmsg.php\">".SYSTEM_MESSAGE."</a>";
					echo "<a href=\"create_account.php\">Create Natars</a>";
                    } ?> <a href="logout.php"><?php echo LOGOUT;?></a></p>
        <p>
            <a href="plus.php?id=3"><?php echo SERVER_NAME; ?> <b><span class="plus_g">P</span><span class="plus_o">l</span><span class="plus_g">u</span><span class="plus_o">s</span></b></a>
        </p>
        <p>
            <a href="rules.php"><b><?php echo GAME_RULES;?></b></a> 
            <a href="support.php"><b><?php echo SUPPORT;?></b></a> 
        <br></p>
		<?php
		$timestamp = $database->isDeleting($session->uid);
		if($timestamp) {
		echo "<td colspan=\"2\" class=\"count\">";
		if($timestamp > time()+48*3600) {
		echo "<a href=\"spieler.php?s=3&id=".$session->uid."&a=1&e=4\"><img
		class=\"del\" src=\"img/x.gif\" alt=\"Cancel process\"
		title=\"Cancel process\" /> </a>";
		}
		$time=$generator->getTimeFormat(($timestamp-time()));
        echo "<a href=\"spieler.php?s=3\"> The account will be deleted in <span
		id=\"timer1\">".$time."</span> .</a></td>";
		}
		?>
    </div>

Regards
Something Nice
 
Upvote 0
Back
Top