diff options
Diffstat (limited to 'packets/map_server/update_hotkeys_packet.gd')
-rw-r--r-- | packets/map_server/update_hotkeys_packet.gd | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/packets/map_server/update_hotkeys_packet.gd b/packets/map_server/update_hotkeys_packet.gd new file mode 100644 index 0000000..f991a7e --- /dev/null +++ b/packets/map_server/update_hotkeys_packet.gd @@ -0,0 +1,17 @@ +## rAthena References: +## - ZC_SHORTCUT_KEY_LIST +## - clif_hotkeys_send +class_name UpdateHotkeysPacket +extends Packet + + +const HEADER := 0x0b20 +const BYTE_LENGTH := 2 + 1 + 2 + 7*38 + +# TODO + + +static func from_bytes(bytes: PackedByteArray) -> UpdateHotkeysPacket: + var packet = UpdateHotkeysPacket.new() + + return packet |