Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Recent content by Dave

  1. Dave

    So.... What's new

    Yes, but MAIET, the company itself, is literally gone.
  2. Dave

    So.... What's new

    MAIET is gone (literally). GunZ 2 is dead. Certain people of an unnamed server are/were DDoSing other servers 24/7 so people will come to their server. The usual.
  3. Dave

    The 'Show Off' topic

    Re: The 'Show Off' topic - Part 2 You're stupid, don't state things when you don't know the facts lmao. I've seen Jeff progress Blitzkrieg and seen all the code commits that he wrote by himself. Why the hell would that matter? We all stole content from MAIET which was originally a Korean server.
  4. Dave

    Fatal error: Uncaught Error: Call to undefined function mssql_connect()

    If you want to use PHP 7 then you have to convert all those mssql functions to PDO (with pdo_sqlsrv or pdo_odbc). If you want to stick to the mssql_* functions, you'll have to keep using the older PHP version.
  5. Dave

    Skype Linkedin Viruses & GunZ

    You must be registered for see element.
  6. Dave

    Need Linux serverfiles GIMME !!

    As far as I know no one has ported it to Linux. It's also heavily based on SQL server so it requires some work to port it over.
  7. Dave

    as finding the "RATIO" KILL DEATH ?? HELP!!!

    Percentage is just multiplying the result by 100. For example, someone with 5 kills and 1 death has a ratio of 5:1 = 5. Multiplied by 100 results in 500%, claiming that the user has 500% (*5) more kills than deaths.
  8. Dave

    as finding the "RATIO" KILL DEATH ?? HELP!!!

    Kills divided by deaths? lol.
  9. Dave

    So... Gunz is dead?

    We had 500-600 players 2 years ago.
  10. Dave

    So... Gunz is dead?

    The playercount you stated for FGunZ is not accurate. We just pushed an update that had some unexpected problems which causes a bit low playercount. Normally we get around 225-250 players on weekdays and close to 300 during the weekend.
  11. Dave

    So... Gunz is dead?

    No offense but you probably have no idea what you're talking about. If you accuse people of something, show some actual tangible evidence first.
  12. Dave

    So... Gunz is dead?

    I feel your pain. Pretty sure who you are referring to when you state "they receive attacks from other servers" since FGunZ had the same problem a couple months ago.
  13. Dave

    Adding DB's to the SQL Server 2008 R2

    AdmWeb is useless, LogDB I would import. It logs some information that might be useful to you such as connection (IP) logs.
  14. Dave

    Port forwarding in 3g connection

    Ports are often closed on 3G connections.
  15. Dave

    Help with PHP

    <?php $row = mssql_fetch_assoc(mssql_query("SELECT UGradeID FROM Account WHERE UserID = '" . $_SESSION['user'] . "'")); if($_SESSION['UGradeID'] = $row['UGradeID'] == 255){ ?> <li><a rel="nofollow" href="index.php?act=admin" class="admin_button"></a></li> <?php } ?> You should really...
Back
Top