2023-11-21 20:37:50 +00:00
|
|
|
// Copyright (c) 2023 Timothy Schenk. Subject to the GNU AGPL Version 3 License.
|
2023-11-20 18:58:30 +00:00
|
|
|
|
2023-10-27 17:47:17 +00:00
|
|
|
namespace Wonderking.Packets;
|
2023-08-09 14:23:41 +00:00
|
|
|
|
|
|
|
public enum OperationCode : ushort
|
|
|
|
{
|
2023-08-10 20:07:58 +00:00
|
|
|
LoginInfo = 11,
|
2023-08-14 20:22:43 +00:00
|
|
|
LoginResponse = 12,
|
2023-11-13 17:23:29 +00:00
|
|
|
ChannelSelection = 13,
|
2023-11-14 19:07:45 +00:00
|
|
|
ChannelSelectionResponse = 13,
|
2023-11-15 19:00:08 +00:00
|
|
|
CharacterNameCheck = 14,
|
|
|
|
CharacterNameCheckResponse = 14,
|
|
|
|
CharacterCreation = 15,
|
|
|
|
CharacterCreationResponse = 15,
|
|
|
|
CharacterDeletion = 16,
|
2023-11-16 16:55:36 +00:00
|
|
|
CharacterDeletionResponse = 16,
|
2023-11-15 19:00:08 +00:00
|
|
|
CharacterSelection = 17,
|
2023-11-19 16:07:28 +00:00
|
|
|
CharacterSelectionSetGuildName = 19
|
2023-08-11 09:31:30 +00:00
|
|
|
}
|