Code Monkey home page Code Monkey logo

Comments (7)

ajh123 avatar ajh123 commented on June 30, 2024

BTW, I'm using 1.19.2 vanilla

from quarry.

ajh123 avatar ajh123 commented on June 30, 2024

Solved by writing my own command node packer. I wish it could be implemented into quarry.

from quarry.

ajh123 avatar ajh123 commented on June 30, 2024

I have been trying to send this packet (under quarry it's called "tab_complete") to the client but I can't seem how to construct its array properly.

class TabCompleteProtocol(ChatProtocol): # <-- Just a normal ServerProtocol
    def packet_tab_complete(self, buff: Buffer1_19_1): # <-- Buffer1_19_1 is there just for type hints
        trans_id = buff.unpack_varint()
        msg = buff.unpack_string()

        array = []
        array.append(("msg", False))
        array.append(("123", False))

        output = b""
        for e in array:
            output+=self.buff_type.pack_string(e[0])
            output+=self.buff_type.pack("?", e[1])

        self.send_packet(
            "tab_complete",
            self.buff_type.pack_varint(trans_id),
            self.buff_type.pack_varint(3), # Start of the text to replace.
            self.buff_type.pack_varint(3), # Length of the text to replace.
            self.buff_type.pack_varint(len(array)), # Number of elements in the following array.
            self.buff_type.pack_byte_array(output)
        )

The problem is I can't seem to figure out how to construct the array. Or are my Varints wrong?

from quarry.

davidawesome02 avatar davidawesome02 commented on June 30, 2024

the packet name might be wrong, this program is outdated af for names

from quarry.

davidawesome02 avatar davidawesome02 commented on June 30, 2024

Solved by writing my own command node packer. I wish it could be implemented into quarry.

NICE JOB BRO, that is cool

from quarry.

davidawesome02 avatar davidawesome02 commented on June 30, 2024

Also make a pull request and try to merge it, if owner ever gets active he might

from quarry.

ajh123 avatar ajh123 commented on June 30, 2024

the packet name might be wrong, this program is outdated af for names

It's not the name because that's what Qurray calls it in it's files. The problem is how I'm adding the data to the packet.

from quarry.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.