summaryrefslogtreecommitdiff
path: root/packets/login_failed_packet.gd
diff options
context:
space:
mode:
Diffstat (limited to 'packets/login_failed_packet.gd')
-rw-r--r--packets/login_failed_packet.gd22
1 files changed, 22 insertions, 0 deletions
diff --git a/packets/login_failed_packet.gd b/packets/login_failed_packet.gd
new file mode 100644
index 0000000..93ebf23
--- /dev/null
+++ b/packets/login_failed_packet.gd
@@ -0,0 +1,22 @@
+## rAthena References:
+## - clif_authfail_fd
+class_name LoginFailedPacket
+extends Packet
+
+
+const HEADER := 0x0081
+const BYTE_LENGTH := 3
+
+
+## Byte Type: u8
+## Byte Length: 1
+@warning_ignore("enum_variable_without_default")
+var reason: Constants.LoginFailedReason
+
+
+static func from_bytes(bytes: PackedByteArray) -> LoginFailedPacket:
+ var packet = LoginFailedPacket.new()
+
+ packet.reason = bytes.decode_u8(2)
+
+ return packet