• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Modern Aac Guild Create error.

Fagnerboff

New Member
Joined
Oct 10, 2010
Messages
48
Reaction score
0
Hello!
I'm having a problem.
Every time someone tries to create a guild of this error.

Create Guild

Error:

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

Recalling that the char can be level 80 or 100 or 500.
Always the same mistake.


Sorry ;/
\/
 
Last edited:
No double posting until 24 have passed.

You can take advantage of this warning and wait a few more hours to post after me.
 
Yea im having the same issue :S rev 265

create_guild.php:
PHP:
<?php
require_once("system/application/config/create_character.php");
echo "<h1>Create Guild</h1>";
	if(count($characters) == 0) 
		error("".count($characters)."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>";
	
	}
?>
 
Back
Top