// Copyright © 2017-2018 Atomic Software, LLC. All Rights Reserved. // See LICENSE.md for full license information. namespace Atom.Core { public enum LoginFailedErrorCode : ushort { Exception = 0x42, DbError = 0x43, WrongCredentials = 0x45, Banned = 0x47, Maintenance = 0x48, Timeout = 0x49 } public enum CreateCharacterFailedErrorCode : ushort { FAILED_CREATE = 0x82, WRONG_CLASS = 0x83, NAME_TAKEN = 0x84, ERROR_MAX_SLOT = 0x85, LV60REQ = 0x86, NAME_IN_USE = 0x181 } }