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

Max Account Gesior

ajax/check_account.php
search for
PHP:
if(strlen($name) > 32)
change it to
PHP:
if(strlen($name) > 8)
search for
PHP:
if(strlen($account) > 0 && strlen($account) < 32)
change it to
PHP:
if(strlen($account) > 0 && strlen($account) < 8)
search for
PHP:
Account name is too long (max. 32 chars)
change it to
PHP:
Account name is too long (max. 8 chars)
 
Back
Top