diff options
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() |