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

AAC Rename character nick name in database [GesiorAAC]

sikret

Member
Joined
Dec 15, 2012
Messages
43
Reaction score
6
Helllo,

like at topic, how can I do that? I can't find where is storage of nicknames in database.
Post automatically merged:

I import missing players table from other schema but with import i have some errors:

Code:
#3730 - Cannot drop table 'players' referenced by a foreign key constraint 'account_bans_ibfk_2' on table 'account_bans'.

I use Gesior ACC
Post automatically merged:

OK i found solution.

If You wanna use command type in MYSQL:

Code:
SELECT * FROM `players`

UPDATE `players` SET `name` = 'xxx' WHERE `players`.`id` = x;

xxx - new name

x- id character
 
Last edited:
Back
Top