• 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 can't create group

ziggy46802

Active Member
Joined
Aug 19, 2012
Messages
418
Reaction score
27
I'm getting this error when I try to create a character

2i0vewi.jpg


Here are the lines 246 - 252 of player.php

Code:
        $group_id = $cfg['vocations'][$vocation]['group'];
        if ($SQL->isTable('groups')) {
            $group = $SQL->myRetrieve('groups', array('id' => $group_id));
            if ($group === false) {
                throw new ClassException('Player::Create() Group #'.$group_id.' does not exist. Check your database and config file.', 6);
            }
        }

I'm using Avesta 7.4 and Nicaw_Avesta_1

Solved -- simply created a group from the admin page, didn't see that before
 
Last edited:
Back
Top