1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- 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;
- }
- }
|