• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Solved Nicaw

HappyFeet

New Member
Joined
Nov 8, 2012
Messages
244
Reaction score
3
Location
Netherlands
Iam trying to use nicaw his aac for my server (Based on Evolutions Version 0.7.8 based on OTServ SVN Version 0.6.0) but no matter wich version I use I get this error:

Fatal error: Uncaught exception 'DatabaseException'
Message: This AAC version does not support your server. Consider using SQL v1.5.

someone knows how to fix it or recommend another aac???
 
[help_id:aacException:private] => 5
[message:protected] => This AAC version does not support your server. Consider using SQL v1.5.
[string:Exception:private] =>
[code:protected] => 0
[file:protected] => D:\xampp\htdocs\Mysticnation\Nicaw 0.6.3\class\sql.php
[line:protected] => 154
[trace:Exception:private] => Array

Code:
public function analyze() {
    //determine database type, try to perform autosetup
        $is_aac_db = in_array('nicaw_accounts',$this->sql_tables);
        $is_server_db = in_array('accounts',$this->sql_tables) && in_array('players',$this->sql_tables);
        $is_svn = in_array('player_depotitems',$this->sql_tables) && in_array('groups',$this->sql_tables);
        $is_cvs = in_array('playerstorage',$this->sql_tables) && in_array('skills',$this->sql_tables);
        if (!$is_aac_db) {
            $this->setup();
            throw new DatabaseException('Notice: AutoSetup has attempted to create missing tables for you. Please create MySQL tables manually from "database.sql" if you are still getting this message.', 3);
        }elseif (!$is_server_db) {
            throw new DatabaseException('It appears you don\'t have SQL sample imported for OT server or it is not supported.', 4);
        }elseif ($is_cvs && !$is_svn) {
            throw new DatabaseException('This AAC version does not support your server. Consider using SQL v1.5.', 5);        <-----------------------------------------------------------------------
        }
        return true;
    }
 
2exap9t.png
 
Back
Top