InnerOpcode.cs 1.1 KB

123456789101112131415161718192021222324252627
  1. namespace ET
  2. {
  3. public static partial class InnerOpcode
  4. {
  5. public const ushort ObjectQueryRequest = 20002;
  6. public const ushort M2A_Reload = 20003;
  7. public const ushort A2M_Reload = 20004;
  8. public const ushort G2G_LockRequest = 20005;
  9. public const ushort G2G_LockResponse = 20006;
  10. public const ushort G2G_LockReleaseRequest = 20007;
  11. public const ushort G2G_LockReleaseResponse = 20008;
  12. public const ushort ObjectAddRequest = 20009;
  13. public const ushort ObjectAddResponse = 20010;
  14. public const ushort ObjectLockRequest = 20011;
  15. public const ushort ObjectLockResponse = 20012;
  16. public const ushort ObjectUnLockRequest = 20013;
  17. public const ushort ObjectUnLockResponse = 20014;
  18. public const ushort ObjectRemoveRequest = 20015;
  19. public const ushort ObjectRemoveResponse = 20016;
  20. public const ushort ObjectGetRequest = 20017;
  21. public const ushort ObjectGetResponse = 20018;
  22. public const ushort R2G_GetLoginKey = 20019;
  23. public const ushort G2R_GetLoginKey = 20020;
  24. public const ushort M2M_UnitTransferResponse = 20021;
  25. public const ushort G2M_SessionDisconnect = 20022;
  26. }
  27. }