123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- namespace ET
- {
-
-
-
-
-
-
-
-
-
- public static partial class ErrorCode
- {
- public const int ERR_Success = 0;
-
- public const int ERR_SystemError = 200002;
-
- public const int ERR_OperationError = 200003;
-
- public const int ERR_ParameterError = 200004;
-
- public const int ERR_LoginError = 200005;
-
- public const int ERR_RequestRepeatedly = 200006;
-
- public const int ERR_UserNameOrPasswordIsNull = 200007;
-
- public const int ERR_UserNameOrPasswordFormatError = 200008;
-
- public const int ERR_UserNameOrPasswordError = 200009;
-
- public const int ERR_UserPermanentBan = 200010;
-
- public const int ERR_UserBanTime = 200011;
-
- public const int ERR_PlayerNameIsNull = 200012;
-
- public const int ERR_ProNotProper = 200013;
-
- public const int ERR_SexNotProper = 200014;
-
- public const int ERR_CreatePlayerError = 200015;
-
- public const int ERR_PlayerIdIsBind = 200016;
-
- public const int ERR_BindPlayerError = 200017;
-
- public const int ERR_OperationToFast = 200018;
-
- public const int ERR_EnterMapError = 200019;
-
- public const int ERR_ConfigError = 200020;
-
- public const int ERR_AccountAlreadyLoggedInElsewhere = 200021;
-
- public const int ERR_PlayerAlreadyLoggedInElsewhere = 200022;
-
- public const int ERR_CreateUnitPlayerError = 200023;
-
- public const int ERR_RoomInfoError = 200024;
- public enum EnterMap
- {
- MapNotExist = 210001,
- BattleSvrErr,
- }
- }
- }
|