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

Block special guilds names config and function gesior

BDG

Banned User
Joined
Nov 26, 2012
Messages
84
Reaction score
1
Hello l need blocking create guild of special names xx and xx ;P please help me :(

config and function.php

Code:
function check_guild_name($name)
{
$temp = strspn("$name", "qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM0123456789 ");
if($temp != strlen($name))
{
return false;
}
else
{
$ok = "/[a-zA-Z ]{6,23}/";
return (preg_match($ok, $name))? true: false;
}
}
 
Back
Top