• 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 Moderm Aac Problem creating character name

laxante

New Member
Joined
Mar 13, 2009
Messages
120
Reaction score
4
Hello:

when i create a character in my web site i can put a space character before the name
example:

character name: Laxante (i put a space before the name so the name is " Laxante")
they cant be exived by other players
how can i fix this problem?

i so sorry about my english i hope u understand me, because im from chile
i will rep u for the help
ty
 
if you can edit the createcharacater page and edit the code.

it tell you something like
PHP:
$char_name= $_POST['Character_name'];
//Not sure how its called in your ACC.
//but change it to this.
$char_name= trim($_POST['Character_name']);

//trim() does remove any space infront of the string or behind it

Here is the function.
PHP: trim - Manual
 
Back
Top