• 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!

Guild problem in site..

Lpe95

https://soundcloud.com/saintdmusic/sail-remix
Joined
Mar 3, 2013
Messages
308
Reaction score
12
Location
Music preformer.
Hey people is trying to create guild , When they clicking on Create guild

this popup is coming

Create Guild
Error:

All your characters are already in guild or they don't have required level. (50)


How to fix it? Cause he are lvl 300+ and higer and can't create guild how can i fix this problem? Any help ?
 
Btw they aren't in guild those other chars. And i am using (modernacc)

ANd here is the script

But it says required level 50 But wher is lvl 50 in this script? xD


Code:
<?php
require_once("system/application/config/create_character.php");
echo "<h1>Create Guild</h1>";
    if(count($characters) == 0)
        error("All your characters are already in guild or they don't have required level. (<b>".$config['levelToCreateGuild']."</b>)");
    else {
    error(validation_errors());
    echo form_open("guilds/create", array('method'=>'post'));
    echo "<label>Character:</label>";
    echo "<select name='character'>";
        foreach($characters as $character) {
            echo "<option value='".$character['id']."'>".$character['name']." (".$character['level'].")</option>";
        }
    echo "</select><br /><br />";
    echo "<label>Guild name:</label>";
    echo "<input type='text' name='name'><br />";
    echo "<input type='submit' value='Create' name='submit'>";
    echo "</form>";
   
    }
?>
 
Last edited:
Back
Top