Galaxy 2d/3d

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

  • there is a 2d mod I think it's being moded for 1.8...3d takes up slot of resources
    ..not sure if their is a mod out you can download the 2d galaxy mod at the posted old mods download
  • hey i have been editing the old 2d galaxy mod to work but im stuck here

    Fatal error: Call to a member function num_rows() on a non-object in /home/techsup0/public_html/includes/pages/game/class.ShowGalaxy2dPage.php on line 106



    $maxfleet = $db->num_rows($db->query("SELECT fleet_id FROM ".FLEETS." WHERE `fleet_owner` = '". $USER['id'] ."' AND `fleet_mission` != 10;"));
  • you could do, sinc u wanted the num_rows

    PHP Source Code

    1. $maxfleet = Database::get()->selectSingle("SELECT COUNT(`fleet_id`) as nr FROM uni".$USER['universe']."_fleets WHERE `fleet_owner` = '". $USER['id'] ."' AND `fleet_mission` != '10';");
    2. echo $maxfleet['nr'];