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,10 @@
# Packet types
Depending on the first byte of a packet, the packet has different attributes.
| First byte | Length of the packet | Encrypted Server -> Client | Encrypted Client -> Server |
|------------|----------------------|-----------|---------|
| 0xC1 | Specified by the second byte | No | Yes (XOR32) |
| 0xC2 | Specified by the second and third byte | No | Yes (XOR32) |
| 0xC3 | Specified by the second byte | Yes (Simple modulus) | Yes (Simple modulus + XOR32) |
| 0xC4 | Specified by the second and third byte | Yes (Simple modulus) | Yes (Simple modulus + XOR32) |