Sending game packets
local gamepacket = GameUpdatePacket()
gamepacket.type = 0 -- Specifies the packet type
gamepacket.pos_x = GetLocal().pos.x * 32 -- X-coordinate position
gamepacket.pos_y = GetLocal().pos.y * 32 -- Y-coordinate position
gamepacket.flags = 65584 -- Status flags
gamepacket.netid = GetLocal().netid -- Network ID
SendPacketRaw(gamepacket) -- Sends the packetLast updated