• 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 [Gesior ACC] Create account problem

Demoon123

New Member
Joined
Aug 14, 2009
Messages
20
Reaction score
0
Hello.
How block letters in Account name ? Only numbers. Thx for help my friends :(
otland.jpg
 
system/load.compat.php

find
function check_account_name($name)

and change
$temp = strspn("$name", "QWERTYUIOPASDFGHJKLZXCVBNM0123456789");

to

$temp = strspn("$name", "0123456789");


then


pages/ajax_check_account.php

echo '<font color="red">Invalid account name format. Use only A-Z and numbers 0-9.</font>';

to

echo '<font color="red">Invalid account name format. numbers 0-9.</font>';
 
register.php, change:
Code:
if (preg_match("/^[a-zA-Z0-9]+$/", $_POST['username']) == false) {
            $errors[] = 'Your account name can only contain characters a-z, A-Z and 0-9.';
with
Code:
if (preg_match("/^[0-9]+$/", $_POST['username']) == false) {
            $errors[] = 'Your account name can only contain numbers.';
 
system/load.compat.php

find
function check_account_name($name)

and change
$temp = strspn("$name", "QWERTYUIOPASDFGHJKLZXCVBNM0123456789");

to

$temp = strspn("$name", "0123456789");


then


pages/ajax_check_account.php

echo '<font color="red">Invalid account name format. Use only A-Z and numbers 0-9.</font>';

to

echo '<font color="red">Invalid account name format. numbers 0-9.</font>';

Hey, i just tried this and it only works if you enter an account name/number with letters only, if you include letters+numbers it still creates an account! is there a fix for that please?
 
Back
Top