diff options
author | Daniel Weipert <git@mail.dweipert.de> | 2024-12-13 14:53:38 +0100 |
---|---|---|
committer | Daniel Weipert <git@mail.dweipert.de> | 2024-12-13 14:53:38 +0100 |
commit | ca4d1945598863d0ce297f4272317e5dd5797f88 (patch) | |
tree | c2675b394140a71c7eee04034f087c107dcd7c9c /packets/map_loaded_packet.gd | |
parent | a22381eff3bf2286ee27f4d15ddf4c431ea063be (diff) |
next commit
Diffstat (limited to 'packets/map_loaded_packet.gd')
-rw-r--r-- | packets/map_loaded_packet.gd | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/packets/map_loaded_packet.gd b/packets/map_loaded_packet.gd new file mode 100644 index 0000000..e0f0967 --- /dev/null +++ b/packets/map_loaded_packet.gd @@ -0,0 +1,12 @@ +## rAthena References: +## - clif_parse_LoadEndAck +class_name MapLoadedPacket +extends Packet + + +const HEADER := 0x007d +const BYTE_LENGTH := 2 + + +func to_bytes(): + return get_header() |