Skip to content

Character Auto Creation

Sergio edited this page Feb 28, 2024 · 1 revision

Since v8.0.0 it is possible to create character automatically on newly created accounts (or just empty accounts). Character will have random name, random race, random class and random gender. To allow this feature, you should edit your config as below:

common:
  auto_create_character_for_new_account: true

connection_data:
  127.0.0.1:
    account_name:
        password: "safe_password"
        autoselect:
            realm_name: ".*STRING OR REGEX PATTERN TO FIND REALM NAME.*"
            character_name: ".*"

First of all, auto_create_character_for_new_account is the new option, which should be set to true and second - you should set character_name param under autoselect section related to current account to .* (as on example above). This string will be parsed as REGEX pattern and such approach will allow to select first existing character.

Clone this wiki locally