Added network skill usage

This commit is contained in:
2024-02-16 15:51:23 +01:00
parent 89d730f0ae
commit c228d4e25a
12 changed files with 77 additions and 21 deletions

View File

@ -24,7 +24,7 @@ func send_login():
var password := "password".sha256_text()
var buffer := StreamPeerBuffer.new()
buffer.put_8(Packet.LOGIN)
buffer.put_u8(Packet.LOGIN)
buffer.put_data(JSON.stringify([Global.username, password]).to_utf8_buffer())
%Client.send(buffer.data_array)
print("[%s] Connecting..." % Global.username)