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

[8.6] [TFS1.3] Alkurius Global & Coustom

Hi there !
When Im trying to create a character, I got this : Wrong characters configuration. Try again or contact with admin. ADMIN: Edit file config.php and set valid characters to copy names. Character to copy: Knight Sample doesn't exist.

How to fix this ?
 
I use MyAcc. Here are error message and config.php file:
 

Attachments

  • Zrzut ekranu 2024-01-24 111233.png
    Zrzut ekranu 2024-01-24 111233.png
    180.9 KB · Views: 8 · VirusTotal
  • Zrzut ekranu 2024-01-24 111808.png
    Zrzut ekranu 2024-01-24 111808.png
    23.9 KB · Views: 8 · VirusTotal
reinstall myacc
I still have the same error while creating a character. Could you tell me what causes this problem ? Is it a difference between table players (its structure) and MyAcc ? Should I change acc maker ?
 
Problem solved. I added this code into my database :

Code:
INSERT INTO `players` (`id`, `name`, `group_id`, `account_id`, `level`, `vocation`, `health`, `healthmax`, `experience`, `lookbody`, `lookfeet`, `lookhead`, `looklegs`, `looktype`, `maglevel`, `mana`, `manamax`, `manaspent`, `soul`, `town_id`, `posx`, `posy`, `posz`, `conditions`, `cap`, `sex`, `lastlogin`, `lastip`, `save`, `lastlogout`, `balance`, `deletion`, `created`, `hidden`, `comment`) VALUES (null, 'Rook Sample', 1, 1, 1, 0, 150, 150, 0, 118, 114, 38, 57, 130, 0, 0, 0, 0, 100, 1, 1000, 1000, 7, '', 400, 1, 1706124632, 2130706433, 1, 1706124632, 0, 0, 1706124632, 1, '');
INSERT INTO `players` (`id`, `name`, `group_id`, `account_id`, `level`, `vocation`, `health`, `healthmax`, `experience`, `lookbody`, `lookfeet`, `lookhead`, `looklegs`, `looktype`, `maglevel`, `mana`, `manamax`, `manaspent`, `soul`, `town_id`, `posx`, `posy`, `posz`, `conditions`, `cap`, `sex`, `lastlogin`, `lastip`, `save`, `lastlogout`, `balance`, `deletion`, `created`, `hidden`, `comment`) VALUES (null, 'Sorcerer Sample', 1, 1, 8, 1, 185, 185, 4200, 118, 114, 38, 57, 130, 0, 90, 90, 0, 100, 1, 1000, 1000, 7, '', 470, 1, 1706124632, 2130706433, 1, 1706124632, 0, 0, 1706124632, 1, '');
INSERT INTO `players` (`id`, `name`, `group_id`, `account_id`, `level`, `vocation`, `health`, `healthmax`, `experience`, `lookbody`, `lookfeet`, `lookhead`, `looklegs`, `looktype`, `maglevel`, `mana`, `manamax`, `manaspent`, `soul`, `town_id`, `posx`, `posy`, `posz`, `conditions`, `cap`, `sex`, `lastlogin`, `lastip`, `save`, `lastlogout`, `balance`, `deletion`, `created`, `hidden`, `comment`) VALUES (null, 'Druid Sample', 1, 1, 8, 2, 185, 185, 4200, 118, 114, 38, 57, 130, 0, 90, 90, 0, 100, 1, 1000, 1000, 7, '', 470, 1, 1706124632, 2130706433, 1, 1706124632, 0, 0, 1706124632, 1, '');
INSERT INTO `players` (`id`, `name`, `group_id`, `account_id`, `level`, `vocation`, `health`, `healthmax`, `experience`, `lookbody`, `lookfeet`, `lookhead`, `looklegs`, `looktype`, `maglevel`, `mana`, `manamax`, `manaspent`, `soul`, `town_id`, `posx`, `posy`, `posz`, `conditions`, `cap`, `sex`, `lastlogin`, `lastip`, `save`, `lastlogout`, `balance`, `deletion`, `created`, `hidden`, `comment`) VALUES (null, 'Paladin Sample', 1, 1, 8, 3, 185, 185, 4200, 118, 114, 38, 57, 129, 0, 90, 90, 0, 100, 1, 1000, 1000, 7, '', 470, 1, 1706124632, 2130706433, 1, 1706124632, 0, 0, 1706124632, 1, '');
INSERT INTO `players` (`id`, `name`, `group_id`, `account_id`, `level`, `vocation`, `health`, `healthmax`, `experience`, `lookbody`, `lookfeet`, `lookhead`, `looklegs`, `looktype`, `maglevel`, `mana`, `manamax`, `manaspent`, `soul`, `town_id`, `posx`, `posy`, `posz`, `conditions`, `cap`, `sex`, `lastlogin`, `lastip`, `save`, `lastlogout`, `balance`, `deletion`, `created`, `hidden`, `comment`) VALUES (null, 'Knight Sample', 1, 1, 8, 4, 185, 185, 4200, 118, 114, 38, 57, 131, 0, 90, 90, 0, 100, 1, 1000, 1000, 7, '', 470, 1, 1706124632, 2130706433, 1, 1706124632, 0, 0, 1706124632, 1, '');

Now it works properly. :)
 
Back
Top