baseline: OpenMU upstream b5a0961 (fresh source)

This commit is contained in:
Acentech Dev
2026-07-14 19:00:35 +03:00
parent 450402e47d
commit 36fc125d5c
11968 changed files with 748705 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
# C1 A3 - LegacyQuestReward (by server)
## Is sent when
As response to the completed quest of a player in scope.
## Causes the following actions on the client side
The game client shows the reward accordingly.
## Structure
| Index | Length | Data Type | Value | Description |
|-------|--------|-----------|-------|-------------|
| 0 | 1 | Byte | 0xC1 | [Packet type](PacketTypes.md) |
| 1 | 1 | Byte | 7 | Packet header - length of the packet |
| 2 | 1 | Byte | 0xA3 | Packet header - packet type identifier |
| 3 | 2 | ShortBigEndian | | PlayerId |
| 5 | 1 | QuestRewardType | | Reward |
| 6 | 1 | Byte | | Count |
### QuestRewardType Enum
Defines the reward type in the quest reward message.
| Value | Name | Description |
|-------|------|-------------|
| 200 | LevelUpPoints | The character receives additional points. |
| 201 | CharacterEvolutionFirstToSecond | The character class changes from the first to the second class. |
| 202 | LevelUpPointsPerLevelIncrease | The character receives additional points per level. |
| 203 | ComboSkill | The character receives the ability to perform skill combinations. |
| 204 | CharacterEvolutionSecondToThird | The character class changes from the second to the third class. |