• 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 [MyAcc] Allow only numbers in account name

Status
Not open for further replies.

Error 502

Intermediate OT User
Joined
Sep 25, 2022
Messages
242
Solutions
8
Reaction score
149
Location
Chile
Server : 1.5 Nekiro downgrade 8.0
MyAAC version: v0.8.7

how do i Allow only numbers in account name?

try deleting in validator, load combat, etc...

like A-Z0-9
QWERTYUIOPASDFGHJKLÑZXCVBNM0123456789

but it didn't work
______________________________________________________________________________________________________

EDIT : the problem was the CACHE jaja

SOLVE HERE

www\system\libs\validator.php

PHP:
    if(!preg_match("/^[A-Z0-9]+$/i", $name))
        {
            self::$lastError = 'Invalid account name format. Use only A-Z and numbers 0-9.';
            return false;
        }

Remplece to


PHP:
  if(!preg_match("/^[0-9]+$/i", $name))
        {
            self::$lastError = 'ONLY NUMBERS';
            return false;
        }

and clean cache xd
 
Last edited:
Status
Not open for further replies.
Back
Top