Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 12.62 KB | None | 0 0
  1.  
  2.     <head>
  3.         <title>Evolera</title>
  4.         <meta name="author" content="Inwob" />
  5.         <meta http-equiv="content-language" content="pl" />
  6.         <meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
  7.         <meta name="keywords" content="free online game,free multiplayer game,ots,open tibia server,tibia,otserv,rpg,orshabaal,war,ots tibia,ip changer,lista ots,forum ots" />
  8.         <link rel="shortcut icon" href="./layouts/pandaria/images/server.ico" type="image/x-icon">
  9.         <link rel="icon" href="./layouts/pandaria/images/server.ico" type="image/x-icon">
  10.         <link rel="stylesheet" type="text/css" href="./layouts/pandaria/style.css" />
  11.         <link rel="stylesheet" type="text/css" href="./layouts/pandaria/basic.css" />
  12.         <link rel="stylesheet" type="text/css" href="./layouts/pandaria/slide.css" />
  13.         <link type="text/css" href="./layouts/pandaria/js/jquery-ui-1.8.19.custom.css" rel="stylesheet" />
  14.         <script type="text/javascript" src="./layouts/pandaria/js/jquery.js"></script>
  15.         <script type="text/javascript" src="./layouts/pandaria/js/jqueryui.js"></script>
  16.         <script type="text/javascript" src="./layouts/pandaria/js/scripts.js"></script>
  17.         <script type="text/javascript" src="./layouts/pandaria/js/highcharts.js"></script>     
  18.         <script src="/js/modules/exporting.js"></script>
  19.         <script type="text/javascript">
  20.             $(function(){
  21.                 function hideAll() {
  22.                     $("#menu").find('div:has(div)').each(function() {
  23.                         $(this).toggle();
  24.                     });
  25.                 }
  26.                
  27.                 function showCurrent() {
  28.                     var url = unescape(window.location.href.replace(/#.*/, ''));
  29.                     var base = window.location.protocol + '//' + window.location.host + window.location.pathname.replace(/[^\/\\]+$/, '');
  30.                    
  31.                     $("#menu").find('a').each(function(){
  32.                         if (unescape($(this)[0].href.replace(/#.*/, '')) == url || (unescape($(this)[0].href.replace(/#.*/, '')) + '/')  == url) {
  33.                             $(this).parent().parent().parent().show();
  34.                             return (false);
  35.                         }
  36.                     });
  37.                 }
  38. $("#menu div.category").click(function() {
  39. var temp = $(this).next();
  40. if (typeof(temp.attr('id')) == 'string' && !temp.is(':visible')) {
  41. $("#menu").find('div:has(div:has(div)):visible').each(function() {
  42. if (temp.attr('id') != $(this).attr('id')) {
  43. $(this).hide('blind', 500);
  44. }
  45. });
  46. temp.show('blind', 500);
  47. } else if (typeof(temp.attr('id')) == 'string' && temp.is(':visible')) {
  48. temp.hide('blind', 500);
  49. }
  50. });            
  51.                 hideAll();
  52.                 showCurrent();
  53.             });
  54.  
  55.  
  56. var current_time = 1380906114;
  57. var later = 1379758000;
  58.  
  59. function cutDown()
  60. {
  61.     current_time += 1; 
  62.     days = (later - current_time) / 60 / 60 / 24;
  63.     daysRound = Math.floor(days);
  64.                    
  65.     hours = (later - current_time) / 60 / 60;
  66.     hoursRound = Math.floor(hours);
  67.                    
  68.     hours2 = (later - current_time) / 60 / 60 - (24 * daysRound);
  69.     hoursRound2 = Math.floor(hours2);
  70.                
  71.     minutes = (later - current_time) / 60 - (24 * 60 * daysRound) - (60 * hoursRound2);
  72.     minutesRound = Math.floor(minutes);
  73.    
  74.     seconds = (later - current_time) - (24 * 60 * 60 * daysRound) - (60 * 60 * hoursRound2) - (60 * minutesRound);
  75.     secondsRound = Math.round(seconds);
  76.     if(hoursRound < 0 || minutesRound < 0 || secondsRound < 0)
  77.     {
  78.         document.getElementById("hours").innerHTML=0;
  79.         document.getElementById("minutes").innerHTML=0;
  80.         document.getElementById("seconds").innerHTML=0;
  81.     } else {
  82.         document.getElementById("hours").innerHTML=hoursRound;
  83.         document.getElementById("minutes").innerHTML=minutesRound;
  84.         document.getElementById("seconds").innerHTML=secondsRound;
  85.     }
  86.     window.setTimeout("cutDown()", 1000);
  87. }
  88. window.setTimeout("cutDown()", 1000);
  89. </script>
  90.  
  91. <script type="text/javascript">
  92.                 var rotateNow = 0;
  93.                
  94.                 function rotateSlider() {
  95.                     var a = $$("#slider_rotate img").length,
  96.                         b = rotateNow;
  97.                     rotateNow++;
  98.                     if (rotateNow == a) rotateNow = 0;
  99.                     oldMorph = new Fx.Morph($$("#slider_rotate img")[b], {
  100.                         duration: "long",
  101.                         transition: Fx.Transitions.Sine.easeOut
  102.                     });
  103.                     oldMorph.start({
  104.                         opacity: 0
  105.                     });
  106.                     newMorph = new Fx.Morph($$("#slider_rotate img")[rotateNow], {
  107.                         duration: "long",
  108.                         transition: Fx.Transitions.Sine.easeOut
  109.                     });
  110.                     newMorph.start({
  111.                         opacity: 1
  112.                     })
  113.                 }
  114.                 window.addEvent("domready", function () {
  115.                     if ($$("#slider_rotate img").length > 0) {
  116.                         $$("#slider_rotate img")[0].setStyle("opacity", 1);
  117.                         rotateSlider.periodical(4000)
  118.                     }
  119.                 });
  120.             </script>
  121.  
  122.     </head>
  123.     <!-- Disabled
  124.     <div id="flags">
  125.     <img src="./layouts/pandaria/images/facebook.png" alt="follow us">
  126.     </div>
  127.     -->
  128.     <body>
  129. <div id="fb-root"></div>
  130.  
  131.  
  132. <script>(function(d, s, id) {
  133.   var js, fjs = d.getElementsByTagName(s)[0];
  134.   if (d.getElementById(id)) return;
  135.   js = d.createElement(s); js.id = id;
  136.   js.src = "//connect.facebook.net/pl_PL/all.js#xfbml=1";
  137.   fjs.parentNode.insertBefore(js, fjs);
  138. }(document, 'script', 'facebook-jssdk'));</script>
  139.         <div id="main_container">
  140.             <div id="main_container_head">
  141.                     <div id="main_container_bg">
  142.                
  143.                 <div id="status_box">
  144.                                    <center>
  145.                                    <table id="serverinfo" cellspacing="4" cellpadding="0" border="0" width="100%">
  146.                                     <tr>
  147.                                        <td>IP Address:</td>
  148.                                        <td><strong>evolera.se</strong></td>
  149.                                     </tr>
  150.                                     <tr>
  151.                                         <td >Login Port:</td>
  152.                                         <td><strong>7171</strong></td>
  153.                                     </tr>
  154.                                     <tr>
  155.                                         <td>Client Version:</td>
  156.                                         <td><strong>8.60</strong></td>
  157.                                     </tr>
  158.                                     <tr>
  159.                                         <td >Server Status:</td>
  160.                                         <td><b>
  161.                                         <font color="#b0fa00"><b>ONLINE</b></font></b></td>
  162.                                     </tr>
  163.                                     <tr>
  164.                                         <td >Server Uptime:</td>
  165.                                         <td>
  166.                                         <font color="#e8ceb7"><strong>13h 15m</font></td>
  167.                                     </tr>
  168.                                     <tr>
  169.                                         <td>Players Online:</td>
  170.                                         <td>                
  171.                                         <a href="?subtopic=whoisonline"> 26</a>                                 </td>
  172.                                     </tr>
  173.                                     </center>                              
  174.                                     </table>
  175.                         </div>
  176.                 </div>
  177.             <div id="menu">
  178.                 <div class="category" style="background: url(./layouts/pandaria/images/news_menu.png);"></div>
  179.                 <div id="community">
  180.                     <div class="link_first">
  181.                         <div class="box">
  182.                             <a href="?subtopic=latestnews">Homepage</a>
  183.                         </div>
  184.                     </div>
  185.                     <div class="link_last">
  186.                         <div class="box">
  187.                             <a href="https://www.facebook.com/pages/Evoleraorg/277985565606099?ref=hl">Follow Us</a>
  188.                         </div>
  189.                     </div>                 
  190.                 </div>
  191.                 <div class="category" style="background: url(./layouts/pandaria/images/account_menu.png);"></div>
  192.                 <div id="account">
  193.                     <div class="link_first">
  194.                         <div class="box">
  195.                             <a href="?subtopic=accountmanagement">Account Management</a>
  196.                         </div>
  197.                     </div>
  198.                     <div class="link">
  199.                         <div class="box">
  200.                             <a href="?subtopic=createaccount">Create Account</a>
  201.                         </div>
  202.                     </div>
  203.                     <div class="link">
  204.                         <div class="box">
  205.                             <a href="?subtopic=lostaccount">Lost Account?</a>
  206.                         </div>
  207.                    
  208.                     </div>                  </div>
  209.                 <div class="category" style="background: url(./layouts/pandaria/images/community_menu.png);"></div>
  210.                 <div id="community">
  211.                     <div class="link_first">
  212.                         <div class="box">
  213.                             <a href="?subtopic=characters">Character Search</a>
  214.                         </div>
  215.                     </div>
  216.                     <div class="link">
  217.                         <div class="box">
  218.                             <a href="?subtopic=whoisonline">Who is online?</a>
  219.                         </div>
  220.                     </div>
  221.                     <div class="link">
  222.                         <div class="box">
  223.                             <a href="?subtopic=guilds">Guilds List</a>
  224.                         </div>
  225.                     </div>
  226.                     <div class="link">
  227.                         <div class="box">
  228.                             <a href="?subtopic=houses">Houses</a>
  229.                         </div>
  230.                     </div>
  231.                     <div class="link">
  232.                         <div class="box">
  233.                             <a href="?subtopic=highscores">Highscores</a>
  234.                         </div>
  235. </div>
  236.                     <div class="link">
  237.                         <div class="box">
  238.                             <a href="?subtopic=bridge">Bridgescores</a>
  239.                         </div>
  240.                    
  241.                     </div>
  242.                     <div class="link">
  243.                         <div class="box">
  244.                             <a href="?subtopic=killstatistics">Latest Deaths</a>
  245.                         </div>
  246.                     </div>
  247.                     <div class="link">
  248.                         <div class="box">
  249.                             <a href="?subtopic=bans">Banishments</a>
  250.                         </div>
  251.                     </div>
  252.                     <div class="link_last">
  253.                         <div class="box">
  254.                             <a href="?subtopic=support">Support Team</a>
  255.                         </div>
  256.                     </div>
  257.                 </div>
  258.                 <div class="category" style="background: url(./layouts/pandaria/images/library_menu.png);"></div>
  259.                 <div id="library">
  260.        
  261.                     <div class="link_first">
  262.                         <div class="box">
  263.                             <a href="?subtopic=serverinfo">Server Information</a>
  264.                         </div>
  265.                     </div>
  266.                     <div class="link_last">
  267.                         <div class="box">
  268.                             <a href="?subtopic=tibiarules">Rules</a>
  269.                         </div>
  270.                     </div>
  271.                 </div>
  272.                 <div class="category" style="background: url(./layouts/pandaria/images/forum_menu.png);"></div>
  273.                 <div id="forum">
  274.                     <div class="link_forum">
  275.                         <div class="box">
  276.                             <a href="?subtopic=forum">Forum Boards</a>
  277.                         </div>
  278.                     </div>
  279.                     </div>
  280.                 <a href="https://www.facebook.com/pages/Evoleraorg/277985565606099?ref=hl"><div class="category" style="background: url(./layouts/pandaria/images/facebook_menu.png);"></div></a>
  281.                 <div id="shop">
  282.                 </div>
  283.                 <div class="category" style="background: url(./layouts/pandaria/images/shop_menu.png);"></div>
  284.                 <div id="shop">
  285.                     <div class="link_first">
  286.                         <div class="box">
  287.                             <a href="?subtopic=buypoints">Buy Points</a>
  288.                         </div>
  289.                     </div>
  290.                     <div class="link_single">
  291.                         <div class="box">
  292.                             <a href="?subtopic=shopsystem">Shop Offers</a>
  293.                     </div>
  294.                     </div>
  295.                 </div>
  296.                 </div>
  297.             <div id="main_container2">
  298.             <script type='text/javascript'>InitializePage();</script>
  299.             <div class="must_be"></div>
  300.             <div class="wrapper">               <div class="header"></div>
  301.                 <div class="body">
  302.                     <div class="text">
  303.                      <div id="cadre-slide">
  304.                 <div class="slide-header">
  305.         <div class="slider">
  306.             <ul class="slides">
  307.                 <li class="slide guildwars">
  308.                     <div id="texte-diapo">
  309.                     </div>
  310.                 </li>
  311.                 <li class="slide newweb">
  312.                     <div id="texte-diapo">
  313.                     </div>
  314.                 </li>
  315.                 <li class="slide test">
  316.                     <div id="texte-diapo">
  317.                     </div>
  318.                 </li>
  319.                 <li class="slide quests">
  320.                     <div id="texte-diapo">
  321.                     </div>
  322.                 </li>
  323.             </ul>
  324.         </div>
  325.     </div>
  326.    
  327.      <script src="/layouts/pandaria/js/glide.js"></script>
  328.        <script>
  329.           var glide = jQuery('.slider').glide({
  330.              arrowRightText: '',
  331.              arrowLeftText: ''
  332.           });
  333.        </script>
  334.     </div>
  335.                     </div>
  336.                 </div>
  337.                 <div class="footer">
  338.                 </div>
  339.             </div>
  340.             <script type='text/javascript'>InitializePage();</script>
  341.             <div class="wrapper2">         
  342.                 <div class="header"></div>
  343.                 <div class="body">
  344.                
  345.                
  346.                     <div class="text">
  347.                    
  348.                        
  349. <div style="text-align: center; border-bottom: 1px solid #000">
  350.     <span style="text-align: center; font-weight: bold; color: #f00">
  351.           Dominating Guilds - Kills
  352.     </span>
  353.     <table border="0" cellspacing="3" cellpadding="4" width="100%" id="topguilds">
  354.         <tr>
  355.                 <td width="33.33%">
  356.                         <a href="/?subtopic=guilds&amp;action=show&amp;guild=1771"><img src="/guild_image.php?id=1771" style="max-height: 64px"/></a>
  357.                 </td>
  358.                 <td width="33.33%">
  359.                         <a href="/?subtopic=guilds&amp;action=show&amp;guild=1789"><img src="/guild_image.php?id=1789" style="max-height: 64px"/></a>
  360.                 </td>
  361.                 <td width="33.33%">
  362.                         <a href="/?subtopic=guilds&amp;action=show&amp;guild=1797"><img src="/guild_image.php?id=1797" style="max-height: 64px"/></a>
  363.                 </td>
  364.         </tr>
  365.         <tr id="names">
  366.                 <td><a href="/?subtopic=guilds&amp;action=show&amp;guild=1771">Ticket To Temple</a></td>
  367.                 <td><a href="/?subtopic=guilds&amp;action=show&amp;guild=1789">-Joker And Smokers-</a></td>
  368.                 <td><a href="/?subtopic=guilds&amp;action=show&amp;guild=1797">McFresh</a></td>
  369.         </tr>
  370.         <tr id="kills">
  371.                 <td><b>741</b> kills</td>
  372.                 <td><b>610</b> kills</td>
  373.                 <td><b>513</b> kills</td>
  374.         </tr>
  375.  
  376.     </table>
  377. </div><h3>No news. Go forum and make new thread on board News.</h3>
  378.                     </div>
  379.                 </div>
  380.                 <div class="footer"></div>
  381.                 <br>
  382.                 <br>
  383.             </div>
  384.         </div>
  385.     </body>
  386. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement