GithubHelp home page GithubHelp logo

Comments (3)

XaviscoB avatar XaviscoB commented on May 28, 2024

So, I did a little tinkering here and there, and I was analyzing the packets being sent directly and I ended up realizing that the server is sending as expected, so much so that when I pull it directly using this method:

bot._client.on('window_items', (window) => {
   console.log(window)
})

it is possible to see the items that when pulled by the "Window" return of event "WindowOpen", appear only as null

image

from mineflayer.

extremeheat avatar extremeheat commented on May 28, 2024

This is not valid javascript:

            bot.activateItem(offHand=false)

What this is doing is declaring an offHand variable in the global scope, as it's not pre-defined with var or let within the current scope, and then that's being passed to the function. Also, activateItem returns a promise that you must await.

I don't understand what you mean here: "However, the slots in the window returned by the Event are only those of the inventories and not of the chest itself."

Where is the expected output coming from? Are you saying it's returning the bot inventory or one half of the chest?

You can log a full object without truncation by using console.dir(obj, { depth: null })

from mineflayer.

XaviscoB avatar XaviscoB commented on May 28, 2024

This is not valid javascript:

            bot.activateItem(offHand=false)

What this is doing is declaring an offHand variable in the global scope, as it's not pre-defined with var or let within the current scope, and then that's being passed to the function. Also, activateItem returns a promise that you must await.

I don't understand what you mean here: "However, the slots in the window returned by the Event are only those of the inventories and not of the chest itself."

Where is the expected output coming from? Are you saying it's returning the bot inventory or one half of the chest?

You can log a full object without truncation by using console.dir(obj, { depth: null })

As can be seen in the previous messages and prints, whenever the bot interacts with the "Compass" item, it opens a Windows, as if it were a Chest, but, when I receive the event using the WindowOpen, it only shows the items that are present in the inventory and not those that should be in the "Chest"

image

But if I receive it directly, using the "window_items" event from minecraft-protocol, it already shows these items as can be seen below

image

from mineflayer.

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.