Help is needed

    This site uses cookies. By continuing to browse this site, you are agreeing to our Cookie Policy.

    • Android wrote:

      Help is needed
      After the engine has been installed Xterium
      github.com/penguin1969/xteriumgame
      There is a problem with entering the game, including the password flies to the admin area ?(
      can give or show a link to produce the problem.....its a little vague
    • all versions of anything have bugs.....open source scripts are community based some work needs to be done by you...i have fixed alot thanks to this community and learning....i have installed the version you have posted above...what is the issue. so far its working for me....so let me know whats the problem
    • in your format on your site edit this in your css to align your center page

      .conteiner {
      1. margin-top: -16px;
      2. background: #08182d;
      3. -moz-border-radius: 4px;
      4. -webkit-border-radius: 4px;
      5. padding: 10px;
      6. margin-left: -104px;
      7. height: auto;
    • I can not start another game based on Xterium
      I'm not allowed into the admin area
    • your menu is massive try to made sub directorys to clean it up

      try this
      css

      CSS Source Code

      1. /** MENU **/
      2. #leftmenu {
      3. width: 252px;
      4. float: left;
      5. margin-left: 12px;
      6. margin-top: 20px;
      7. overflow: visible;
      8. border: 1px solid #524d4d;
      9. -moz-border-radius: 3px;
      10. -webkit-border-radius: 3px;
      11. border-radius: 3px;
      12. background: rgba(6, 5, 5, 0.8);
      13. padding: 5px;
      14. overflow: visible;
      15. }
      16. .menu_header {
      17. text-align: center;
      18. margin: 5px 0 10px 0;
      19. }
      20. .menu_content_left {
      21. }
      22. .menu_content_full {
      23. width: 89%;
      24. padding: 0 7px;
      25. margin: 0px 1px 5px 5px;
      26. line-height: 24px;
      27. color: #CCC;
      28. text-decoration: none;
      29. border: 1px solid #524d4d;
      30. -moz-border-radius: 2px 0px 0px 2px;
      31. -webkit-border-radius: 2px 0px 0px 2px;
      32. border-radius: 2px 0px 0px 2px;
      33. background: #111111;
      34. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#0a1629', endColorstr = '#091324');
      35. -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr = '#0a1629', endColorstr = '#091324')";
      36. text-align: center;
      37. }
      38. .menu_content_left a {
      39. width: 40%;
      40. padding: 0 7px;
      41. float: left;
      42. margin: 0px 1px 5px 5px;
      43. line-height: 24px;
      44. color: #CCC;
      45. text-decoration: none;
      46. border: 1px solid #524d4d;
      47. -moz-border-radius: 2px 0px 0px 2px;
      48. -webkit-border-radius: 2px 0px 0px 2px;
      49. border-radius: 2px 0px 0px 2px;
      50. background: #111111;
      51. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#0a1629', endColorstr = '#091324');
      52. -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr = '#0a1629', endColorstr = '#091324')";
      53. text-align: left;
      54. height: 25px;
      55. overflow: hidden;
      56. }
      57. .menu_footer {
      58. padding: 10px;
      59. text-align: center;
      60. font-weight: bold;
      61. }
      62. #menu {
      63. list-style:none;
      64. margin:0;
      65. padding:0;
      66. }
      67. #menu li {
      68. margin:0;
      69. padding:0;
      70. }
      71. #menu a {
      72. display: block;
      73. width: 68px;
      74. padding: 0 7px;
      75. float: left;
      76. margin: 0px 1px 5px 5px;
      77. height: 24px;
      78. line-height: 24px;
      79. color: #CCC;
      80. text-decoration: none;
      81. text-shadow: 0px 1px 0px rgba(0,0,0,0.6);
      82. border: 1px solid #524d4d;
      83. -moz-border-radius: 2px 0px 0px 2px;
      84. -webkit-border-radius: 2px 0px 0px 2px;
      85. border-radius: 2px 0px 0px 2px;
      86. background: #091527;
      87. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#0a1629', endColorstr = '#091324');
      88. -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr = '#0a1629', endColorstr = '#091324')";
      89. background-image: -moz-linear-gradient(top, #0a1629, #091324);
      90. background-image: -ms-linear-gradient(top, #0a1629, #091324);
      91. background-image: -o-linear-gradient(top, #0a1629, #091324);
      92. background-image: -webkit-gradient(linear, center top, center bottom, from(#0a1629), to(#091324));
      93. background-image: -webkit-linear-gradient(top, #0a1629, #091324);
      94. background-image: linear-gradient(top, #0a1629, #091324);
      95. -moz-background-clip: padding;
      96. -webkit-background-clip: padding-box;
      97. background-clip: padding-box;
      98. text-align: left;
      99. position: relative;
      100. margin-right: 0;
      101. box-shadow: inset 1px 1px #142c52, inset -1px -1px #142c52;
      102. }
      Display All
    • and in overview default..change as needed

      Source Code

      1. <nav role='navigation'>
      2. <div id="menuToggle">
      3. <!--
      4. A fake / hidden checkbox is used as click reciever,
      5. so you can use the :checked selector on it.
      6. -->
      7. <input type="checkbox" />
      8. <!--
      9. Some spans to act as a hamburger.
      10. They are acting like a real hamburger,
      11. not that McDonalds stuff.
      12. -->
      13. <span></span>
      14. <span></span>
      15. <span></span>
      16. <!--
      17. Too bad the menu has to be inside of the button
      18. but hey, it's pure CSS magic.
      19. -->
      20. <ul id="menu">
      21. <a class="tooltip" data-tooltip-content="Start Your Basic training!" href="game.php?page=tutorial"><img src="/pic/ac.ico" width="50" height="50" alt=""></a><a class="tooltip" data-tooltip-content="Daily Missions!" href="game.php?page=Achievements"><img src="/pic/dd.png" width="50" height="50" alt=""></a><a class="tooltip" data-tooltip-content="Defence Bonus!" href="game.php?page=defBonus"><img src="/pic/db.png" width="50" height="50" alt=""></a><a class="tooltip" data-tooltip-content="Dark Matter Bonus!" href="game.php?page=res"><img src="/pic/dm.png" width="50" height="50" alt=""></a><a class="tooltip" data-tooltip-content="Dark and Antimatter Bonus!" href="game.php?page=ResBonus"><img src="/pic/lo.png" width="50" height="50" alt=""></a><a class="tooltip" data-tooltip-content="Weekly Buildings Bonus!" href="game.php?page=lucky"><img src="/pic/77.png" width="50" height="50" alt=""></a><a class="tooltip" data-tooltip-content="Galactic Trading Hub!" href="game.php?page=recupflotte"><img src="/pic/trr.gif" width="50" height="50" alt=""></a></a><a class="tooltip" data-tooltip-content="Quick Guid To Start You Off!" href="game.php?page=Questions"><img src="/pic/guild.gif" width="50" height="50" alt=""></a><a class="tooltip" data-tooltip-content="Test Your luck at the Jackpot!" href="game.php?page=jackpot"><img src="/images/j.gif" width="50" height="50" alt=""></a><a class="tooltip" data-tooltip-content="AntiMatter Lottery, Buy you Ticket Today!" href="game.php?page=lottery"><img src="/images/l.gif" width="50" height="50" alt=""></a><a class="tooltip" data-tooltip-content="Galactic Bank!" href="game.php?page=bank"><img src="/pic/ggk.jpg" width="50" height="50" alt=""></a>
      22. </ul>
      23. </div>
      24. </nav>
      25. </div>
      Display All
    • offtopic: wow, my old github there. when I was noob :D

      Check if is running md5 or crypt password, i remember I did some conversion on it, but never finished.
    • Neither I would suggest the usage of it, it is very outdated and it needs a lot of fixing.