PrismarineJS / mineflayer

Create Minecraft bots with a powerful, stable, and high level JavaScript API.
https://prismarinejs.github.io/mineflayer/
MIT License
5.09k stars 921 forks source link

moveVehicle not working with horses #2766

Open isbd opened 2 years ago

isbd commented 2 years ago

Versions

Detailed description of a problem

When attempting to have a bot move while on a horse using the moveVehicle command, nothing happens. I used pakkit as suggested from the discord and see an event is being created when running the command 'steer_vehicle{ sideways: 1, forward: 1, jump: 1}'.

What did you try yet?

I tried a few versions of minecraft, 1.17.1 and 1.12.2, but had the same results. Also tried using pathfinder for navigating the bot on a horse although I don't believe that implementation is meant to work.

Did you try any method from the API? Yes. The moveVehicle command. Also print(bit_bash.bot.vehicle) shows the bot recognizes it's mounted Did you try any example? Any error from those? Did not see any example for moving a horse.

Your current code

Using python with imported javascript library

import time
from configparser import ConfigParser
from base_bot import BaseBot
from javascript import require, On, Once, AsyncTask, once, off
mineflayer = require('mineflayer')

class BitBash(BaseBot):
    """
    @brief: Bit Bash bot class
    """
    def __init__(self):
        config = ConfigParser()
        config.read('config.ini')
        params = {
            'host': 'localhost',
            'port': 2777,
            'username': config['bitbash']['username'],
            'password': config['bitbash']['password'],
            'auth': config['bitbash']['auth'],
            'version': '1.18.2'
        }
        super().__init__(params)

    def run(self):
        """
        @brief: Runs bot
        """
        print('Bot has started')
        while True:
            time.sleep(1)

bit_bash = BitBash()

@On(bit_bash.bot, 'chat')
def on_chat(this, user, message, *rest):
    """!
    @brief This is basic
    """
    if user == 'isbd':
        listing = bit_bash.bot.entities
        print(bit_bash.bot.vehicle)
        print(listing)
    if message == 'forward':
        print('Moving forward')
        bit_bash.bot.moveVehicle(1.0, 1.0)
    if message == 'mount':
        bit_bash.bot.mount(listing['141'])
    if message == 'dismount':
        bit_bash.bot.dismount()
    if message == 'follow':
        bit_bash.bot_movement.follow(True)

bit_bash.run()

Expected behavior

moveVehicle command, when run, would navigate the horse and mounted player in a direction depending on the passed in arguments.

Additional context

I've seen a few issues discussing horse and boat movements with the moveVehicle command

isbd commented 2 years ago

Here's the pakkit json from trying to move the horse with the above code

[{"meta":{"size":26,"name":"position","state":"play"},"data":{"x":-3.5,"y":-8,"z":2.5,"onGround":true},"direction":"serverbound","hexIdString":"0x11","raw":[17,192,12,0,0,0,0,0,0,192,32,0,0,0,0,0,0,64,4,0,0,0,0,0,0,1],"time":1662326219030,"packetValid":true,"uid":0},{"meta":{"size":6,"name":"entity_look","state":"play"},"data":{"entityId":141,"yaw":6,"pitch":-28,"onGround":true},"direction":"clientbound","hexIdString":"0x2b","raw":[43,141,1,6,228,1],"time":1662326219382,"packetValid":true,"uid":1},{"meta":{"size":4,"name":"entity_head_rotation","state":"play"},"data":{"entityId":141,"headYaw":-2},"direction":"clientbound","hexIdString":"0x3e","raw":[62,141,1,254],"time":1662326219382,"packetValid":true,"uid":2},{"meta":{"size":4,"name":"entity_head_rotation","state":"play"},"data":{"entityId":141,"headYaw":-15},"direction":"clientbound","hexIdString":"0x3e","raw":[62,141,1,241],"time":1662326219532,"packetValid":true,"uid":3},{"meta":{"size":17,"name":"update_time","state":"play"},"data":{"age":[0,4859],"time":[0,4859]},"direction":"clientbound","hexIdString":"0x59","raw":[89,0,0,0,0,0,0,18,251,0,0,0,0,0,0,18,251],"time":1662326219781,"packetValid":true,"uid":4},{"meta":{"size":10,"name":"rel_entity_move","state":"play"},"data":{"entityId":128,"dX":0,"dY":0,"dZ":0,"onGround":true},"direction":"clientbound","hexIdString":"0x29","raw":[41,128,1,0,0,0,0,0,0,1],"time":1662326219982,"packetValid":true,"uid":5},{"meta":{"size":26,"name":"position","state":"play"},"data":{"x":-3.5,"y":-8,"z":2.5,"onGround":true},"direction":"serverbound","hexIdString":"0x11","raw":[17,192,12,0,0,0,0,0,0,192,32,0,0,0,0,0,0,64,4,0,0,0,0,0,0,1],"time":1662326220086,"packetValid":true,"uid":6},{"meta":{"size":17,"name":"update_time","state":"play"},"data":{"age":[0,4879],"time":[0,4879]},"direction":"clientbound","hexIdString":"0x59","raw":[89,0,0,0,0,0,0,19,15,0,0,0,0,0,0,19,15],"time":1662326220780,"packetValid":true,"uid":7},{"meta":{"size":26,"name":"position","state":"play"},"data":{"x":-3.5,"y":-8,"z":2.5,"onGround":true},"direction":"serverbound","hexIdString":"0x11","raw":[17,192,12,0,0,0,0,0,0,192,32,0,0,0,0,0,0,64,4,0,0,0,0,0,0,1],"time":1662326221143,"packetValid":true,"uid":8},{"meta":{"size":10,"name":"rel_entity_move","state":"play"},"data":{"entityId":141,"dX":0,"dY":0,"dZ":0,"onGround":true},"direction":"clientbound","hexIdString":"0x29","raw":[41,141,1,0,0,0,0,0,0,1],"time":1662326221483,"packetValid":true,"uid":9},{"meta":{"size":17,"name":"update_time","state":"play"},"data":{"age":[0,4899],"time":[0,4899]},"direction":"clientbound","hexIdString":"0x59","raw":[89,0,0,0,0,0,0,19,35,0,0,0,0,0,0,19,35],"time":1662326221781,"packetValid":true,"uid":10},{"meta":{"size":6,"name":"entity_look","state":"play"},"data":{"entityId":141,"yaw":6,"pitch":0,"onGround":true},"direction":"clientbound","hexIdString":"0x2b","raw":[43,141,1,6,0,1],"time":1662326222082,"packetValid":true,"uid":11},{"meta":{"size":26,"name":"position","state":"play"},"data":{"x":-3.5,"y":-8,"z":2.5,"onGround":true},"direction":"serverbound","hexIdString":"0x11","raw":[17,192,12,0,0,0,0,0,0,192,32,0,0,0,0,0,0,64,4,0,0,0,0,0,0,1],"time":1662326222144,"packetValid":true,"uid":12},{"meta":{"size":6,"name":"entity_look","state":"play"},"data":{"entityId":141,"yaw":6,"pitch":-28,"onGround":true},"direction":"clientbound","hexIdString":"0x2b","raw":[43,141,1,6,228,1],"time":1662326222381,"packetValid":true,"uid":13},{"meta":{"size":306,"name":"chat","state":"play"},"data":{"message":"{\"translate\":\"chat.type.text\",\"with\":[{\"insertion\":\"isbd\",\"clickEvent\":{\"action\":\"suggest_command\",\"value\":\"/tell isbd \"},\"hoverEvent\":{\"action\":\"show_entity\",\"contents\":{\"type\":\"minecraft:player\",\"id\":\"5d7fc6d7-8a36-4995-a824-6a95937ace04\",\"name\":{\"text\":\"isbd\"}}},\"text\":\"isbd\"},\"t\"]}","position":0,"sender":"5d7fc6d7-8a36-4995-a824-6a95937ace04"},"direction":"clientbound","hexIdString":"0x0f","raw":[15,158,2,123,34,116,114,97,110,115,108,97,116,101,34,58,34,99,104,97,116,46,116,121,112,101,46,116,101,120,116,34,44,34,119,105,116,104,34,58,91,123,34,105,110,115,101,114,116,105,111,110,34,58,34,105,115,98,100,34,44,34,99,108,105,99,107,69,118,101,110,116,34,58,123,34,97,99,116,105,111,110,34,58,34,115,117,103,103,101,115,116,95,99,111,109,109,97,110,100,34,44,34,118,97,108,117,101,34,58,34,47,116,101,108,108,32,105,115,98,100,32,34,125,44,34,104,111,118,101,114,69,118,101,110,116,34,58,123,34,97,99,116,105,111,110,34,58,34,115,104,111,119,95,101,110,116,105,116,121,34,44,34,99,111,110,116,101,110,116,115,34,58,123,34,116,121,112,101,34,58,34,109,105,110,101,99,114,97,102,116,58,112,108,97,121,101,114,34,44,34,105,100,34,58,34,53,100,55,102,99,54,100,55,45,56,97,51,54,45,52,57,57,53,45,97,56,50,52,45,54,97,57,53,57,51,55,97,99,101,48,52,34,44,34,110,97,109,101,34,58,123,34,116,101,120,116,34,58,34,105,115,98,100,34,125,125,125,44,34,116,101,120,116,34,58,34,105,115,98,100,34,125,44,34,116,34,93,125,0,93,127,198,215,138,54,73,149,168,36,106,149,147,122,206,4],"time":1662326222508,"packetValid":true,"uid":14},{"meta":{"size":17,"name":"update_time","state":"play"},"data":{"age":[0,4919],"time":[0,4919]},"direction":"clientbound","hexIdString":"0x59","raw":[89,0,0,0,0,0,0,19,55,0,0,0,0,0,0,19,55],"time":1662326222781,"packetValid":true,"uid":15},{"meta":{"size":10,"name":"rel_entity_move","state":"play"},"data":{"entityId":128,"dX":0,"dY":0,"dZ":0,"onGround":true},"direction":"clientbound","hexIdString":"0x29","raw":[41,128,1,0,0,0,0,0,0,1],"time":1662326222981,"packetValid":true,"uid":16},{"meta":{"size":26,"name":"position","state":"play"},"data":{"x":-3.5,"y":-8,"z":2.5,"onGround":true},"direction":"serverbound","hexIdString":"0x11","raw":[17,192,12,0,0,0,0,0,0,192,32,0,0,0,0,0,0,64,4,0,0,0,0,0,0,1],"time":1662326223145,"packetValid":true,"uid":17},{"meta":{"size":17,"name":"update_time","state":"play"},"data":{"age":[0,4939],"time":[0,4939]},"direction":"clientbound","hexIdString":"0x59","raw":[89,0,0,0,0,0,0,19,75,0,0,0,0,0,0,19,75],"time":1662326223781,"packetValid":true,"uid":18},{"meta":{"size":26,"name":"position","state":"play"},"data":{"x":-3.5,"y":-8,"z":2.5,"onGround":true},"direction":"serverbound","hexIdString":"0x11","raw":[17,192,12,0,0,0,0,0,0,192,32,0,0,0,0,0,0,64,4,0,0,0,0,0,0,1],"time":1662326224153,"packetValid":true,"uid":19},{"meta":{"size":10,"name":"rel_entity_move","state":"play"},"data":{"entityId":141,"dX":0,"dY":0,"dZ":0,"onGround":true},"direction":"clientbound","hexIdString":"0x29","raw":[41,141,1,0,0,0,0,0,0,1],"time":1662326224481,"packetValid":true,"uid":20},{"meta":{"size":9,"name":"keep_alive","state":"play"},"data":{"keepAliveId":[0,957515]},"direction":"clientbound","hexIdString":"0x21","raw":[33,0,0,0,0,0,14,156,75],"time":1662326224734,"packetValid":true,"uid":21},{"meta":{"size":9,"name":"keep_alive","state":"play"},"data":{"keepAliveId":[0,957515]},"direction":"serverbound","hexIdString":"0x0f","raw":[15,0,0,0,0,0,14,156,75],"time":1662326224735,"packetValid":true,"uid":22},{"meta":{"size":17,"name":"update_time","state":"play"},"data":{"age":[0,4959],"time":[0,4959]},"direction":"clientbound","hexIdString":"0x59","raw":[89,0,0,0,0,0,0,19,95,0,0,0,0,0,0,19,95],"time":1662326224780,"packetValid":true,"uid":23},{"meta":{"size":26,"name":"position","state":"play"},"data":{"x":-3.5,"y":-8,"z":2.5,"onGround":true},"direction":"serverbound","hexIdString":"0x11","raw":[17,192,12,0,0,0,0,0,0,192,32,0,0,0,0,0,0,64,4,0,0,0,0,0,0,1],"time":1662326225215,"packetValid":true,"uid":24},{"meta":{"size":6,"name":"entity_look","state":"play"},"data":{"entityId":141,"yaw":6,"pitch":0,"onGround":true},"direction":"clientbound","hexIdString":"0x2b","raw":[43,141,1,6,0,1],"time":1662326225381,"packetValid":true,"uid":25},{"meta":{"size":17,"name":"update_time","state":"play"},"data":{"age":[0,4979],"time":[0,4979]},"direction":"clientbound","hexIdString":"0x59","raw":[89,0,0,0,0,0,0,19,115,0,0,0,0,0,0,19,115],"time":1662326225780,"packetValid":true,"uid":26},{"meta":{"size":10,"name":"rel_entity_move","state":"play"},"data":{"entityId":128,"dX":0,"dY":0,"dZ":0,"onGround":true},"direction":"clientbound","hexIdString":"0x29","raw":[41,128,1,0,0,0,0,0,0,1],"time":1662326225981,"packetValid":true,"uid":27},{"meta":{"size":26,"name":"position","state":"play"},"data":{"x":-3.5,"y":-8,"z":2.5,"onGround":true},"direction":"serverbound","hexIdString":"0x11","raw":[17,192,12,0,0,0,0,0,0,192,32,0,0,0,0,0,0,64,4,0,0,0,0,0,0,1],"time":1662326226272,"packetValid":true,"uid":28},{"meta":{"size":310,"name":"chat","state":"play"},"data":{"message":"{\"translate\":\"chat.type.text\",\"with\":[{\"insertion\":\"isbd\",\"clickEvent\":{\"action\":\"suggest_command\",\"value\":\"/tell isbd \"},\"hoverEvent\":{\"action\":\"show_entity\",\"contents\":{\"type\":\"minecraft:player\",\"id\":\"5d7fc6d7-8a36-4995-a824-6a95937ace04\",\"name\":{\"text\":\"isbd\"}}},\"text\":\"isbd\"},\"mount\"]}","position":0,"sender":"5d7fc6d7-8a36-4995-a824-6a95937ace04"},"direction":"clientbound","hexIdString":"0x0f","raw":[15,162,2,123,34,116,114,97,110,115,108,97,116,101,34,58,34,99,104,97,116,46,116,121,112,101,46,116,101,120,116,34,44,34,119,105,116,104,34,58,91,123,34,105,110,115,101,114,116,105,111,110,34,58,34,105,115,98,100,34,44,34,99,108,105,99,107,69,118,101,110,116,34,58,123,34,97,99,116,105,111,110,34,58,34,115,117,103,103,101,115,116,95,99,111,109,109,97,110,100,34,44,34,118,97,108,117,101,34,58,34,47,116,101,108,108,32,105,115,98,100,32,34,125,44,34,104,111,118,101,114,69,118,101,110,116,34,58,123,34,97,99,116,105,111,110,34,58,34,115,104,111,119,95,101,110,116,105,116,121,34,44,34,99,111,110,116,101,110,116,115,34,58,123,34,116,121,112,101,34,58,34,109,105,110,101,99,114,97,102,116,58,112,108,97,121,101,114,34,44,34,105,100,34,58,34,53,100,55,102,99,54,100,55,45,56,97,51,54,45,52,57,57,53,45,97,56,50,52,45,54,97,57,53,57,51,55,97,99,101,48,52,34,44,34,110,97,109,101,34,58,123,34,116,101,120,116,34,58,34,105,115,98,100,34,125,125,125,44,34,116,101,120,116,34,58,34,105,115,98,100,34,125,44,34,109,111,117,110,116,34,93,125,0,93,127,198,215,138,54,73,149,168,36,106,149,147,122,206,4],"time":1662326226439,"packetValid":true,"uid":29},{"meta":{"size":6,"name":"use_entity","state":"play"},"data":{"target":141,"mouse":0,"hand":0,"sneaking":false},"direction":"serverbound","hexIdString":"0x0d","raw":[13,141,1,0,0,0],"time":1662326226456,"packetValid":true,"uid":30},{"meta":{"size":36,"name":"position","state":"play"},"data":{"x":-3.5,"y":-8,"z":2.5,"yaw":8.5130615234375,"pitch":0,"flags":0,"teleportId":5,"dismountVehicle":false},"direction":"clientbound","hexIdString":"0x38","raw":[56,192,12,0,0,0,0,0,0,192,32,0,0,0,0,0,0,64,4,0,0,0,0,0,0,65,8,53,128,0,0,0,0,0,5,0],"time":1662326226458,"packetValid":true,"uid":31},{"meta":{"size":2,"name":"teleport_confirm","state":"play"},"data":{"teleportId":5},"direction":"serverbound","hexIdString":"0x00","raw":[0,5],"time":1662326226459,"packetValid":true,"uid":32},{"meta":{"size":34,"name":"position_look","state":"play"},"data":{"x":-3.5,"y":-8,"z":2.5,"yaw":8.5130615234375,"pitch":0,"onGround":false},"direction":"serverbound","hexIdString":"0x12","raw":[18,192,12,0,0,0,0,0,0,192,32,0,0,0,0,0,0,64,4,0,0,0,0,0,0,65,8,53,128,0,0,0,0,0],"time":1662326226460,"packetValid":true,"uid":33},{"meta":{"size":34,"name":"position_look","state":"play"},"data":{"x":-3.5,"y":-8,"z":2.5,"yaw":8.5130615234375,"pitch":0,"onGround":false},"direction":"serverbound","hexIdString":"0x12","raw":[18,192,12,0,0,0,0,0,0,192,32,0,0,0,0,0,0,64,4,0,0,0,0,0,0,65,8,53,128,0,0,0,0,0],"time":1662326226463,"packetValid":true,"uid":34},{"meta":{"size":6,"name":"set_passengers","state":"play"},"data":{"entityId":141,"passengers":[145]},"direction":"clientbound","hexIdString":"0x54","raw":[84,141,1,1,145,1],"time":1662326226482,"packetValid":true,"uid":35},{"meta":{"size":9,"name":"entity_velocity","state":"play"},"data":{"entityId":141,"velocityX":0,"velocityY":0,"velocityZ":0},"direction":"clientbound","hexIdString":"0x4f","raw":[79,141,1,0,0,0,0,0,0],"time":1662326226582,"packetValid":true,"uid":36},{"meta":{"size":4,"name":"entity_head_rotation","state":"play"},"data":{"entityId":141,"headYaw":6},"direction":"clientbound","hexIdString":"0x3e","raw":[62,141,1,6],"time":1662326226582,"packetValid":true,"uid":37},{"meta":{"size":17,"name":"update_time","state":"play"},"data":{"age":[0,4999],"time":[0,4999]},"direction":"clientbound","hexIdString":"0x59","raw":[89,0,0,0,0,0,0,19,135,0,0,0,0,0,0,19,135],"time":1662326226781,"packetValid":true,"uid":38},{"meta":{"size":26,"name":"position","state":"play"},"data":{"x":-3.5,"y":-8,"z":2.5,"onGround":false},"direction":"serverbound","hexIdString":"0x11","raw":[17,192,12,0,0,0,0,0,0,192,32,0,0,0,0,0,0,64,4,0,0,0,0,0,0,0],"time":1662326227332,"packetValid":true,"uid":39},{"meta":{"size":10,"name":"rel_entity_move","state":"play"},"data":{"entityId":141,"dX":0,"dY":0,"dZ":0,"onGround":true},"direction":"clientbound","hexIdString":"0x29","raw":[41,141,1,0,0,0,0,0,0,1],"time":1662326227481,"packetValid":true,"uid":40},{"meta":{"size":17,"name":"update_time","state":"play"},"data":{"age":[0,5019],"time":[0,5019]},"direction":"clientbound","hexIdString":"0x59","raw":[89,0,0,0,0,0,0,19,155,0,0,0,0,0,0,19,155],"time":1662326227781,"packetValid":true,"uid":41},{"meta":{"size":26,"name":"position","state":"play"},"data":{"x":-3.5,"y":-8,"z":2.5,"onGround":false},"direction":"serverbound","hexIdString":"0x11","raw":[17,192,12,0,0,0,0,0,0,192,32,0,0,0,0,0,0,64,4,0,0,0,0,0,0,0],"time":1662326228333,"packetValid":true,"uid":42},{"meta":{"size":17,"name":"update_time","state":"play"},"data":{"age":[0,5039],"time":[0,5039]},"direction":"clientbound","hexIdString":"0x59","raw":[89,0,0,0,0,0,0,19,175,0,0,0,0,0,0,19,175],"time":1662326228780,"packetValid":true,"uid":43},{"meta":{"size":10,"name":"rel_entity_move","state":"play"},"data":{"entityId":128,"dX":0,"dY":0,"dZ":0,"onGround":true},"direction":"clientbound","hexIdString":"0x29","raw":[41,128,1,0,0,0,0,0,0,1],"time":1662326228987,"packetValid":true,"uid":44},{"meta":{"size":26,"name":"position","state":"play"},"data":{"x":-3.5,"y":-8,"z":2.5,"onGround":false},"direction":"serverbound","hexIdString":"0x11","raw":[17,192,12,0,0,0,0,0,0,192,32,0,0,0,0,0,0,64,4,0,0,0,0,0,0,0],"time":1662326229335,"packetValid":true,"uid":45},{"meta":{"size":17,"name":"update_time","state":"play"},"data":{"age":[0,5059],"time":[0,5059]},"direction":"clientbound","hexIdString":"0x59","raw":[89,0,0,0,0,0,0,19,195,0,0,0,0,0,0,19,195],"time":1662326229781,"packetValid":true,"uid":46},{"meta":{"size":26,"name":"position","state":"play"},"data":{"x":-3.5,"y":-8,"z":2.5,"onGround":false},"direction":"serverbound","hexIdString":"0x11","raw":[17,192,12,0,0,0,0,0,0,192,32,0,0,0,0,0,0,64,4,0,0,0,0,0,0,0],"time":1662326230351,"packetValid":true,"uid":47},{"meta":{"size":10,"name":"rel_entity_move","state":"play"},"data":{"entityId":141,"dX":0,"dY":0,"dZ":0,"onGround":true},"direction":"clientbound","hexIdString":"0x29","raw":[41,141,1,0,0,0,0,0,0,1],"time":1662326230483,"packetValid":true,"uid":48},{"meta":{"size":17,"name":"update_time","state":"play"},"data":{"age":[0,5079],"time":[0,5079]},"direction":"clientbound","hexIdString":"0x59","raw":[89,0,0,0,0,0,0,19,215,0,0,0,0,0,0,19,215],"time":1662326230779,"packetValid":true,"uid":49},{"meta":{"size":26,"name":"position","state":"play"},"data":{"x":-3.5,"y":-8,"z":2.5,"onGround":false},"direction":"serverbound","hexIdString":"0x11","raw":[17,192,12,0,0,0,0,0,0,192,32,0,0,0,0,0,0,64,4,0,0,0,0,0,0,0],"time":1662326231407,"packetValid":true,"uid":50},{"meta":{"size":17,"name":"update_time","state":"play"},"data":{"age":[0,5099],"time":[0,5099]},"direction":"clientbound","hexIdString":"0x59","raw":[89,0,0,0,0,0,0,19,235,0,0,0,0,0,0,19,235],"time":1662326231780,"packetValid":true,"uid":51},{"meta":{"size":24,"name":"sound_effect","state":"play"},"data":{"soundId":493,"soundCategory":6,"x":-54,"y":-64,"z":39,"volume":0.800000011920929,"pitch":0.9542438387870789},"direction":"clientbound","hexIdString":"0x5d","raw":[93,237,3,6,255,255,255,202,255,255,255,192,0,0,0,39,63,76,204,205,63,116,73,83],"time":1662326231832,"packetValid":true,"uid":52},{"meta":{"size":10,"name":"rel_entity_move","state":"play"},"data":{"entityId":128,"dX":0,"dY":0,"dZ":0,"onGround":true},"direction":"clientbound","hexIdString":"0x29","raw":[41,128,1,0,0,0,0,0,0,1],"time":1662326231982,"packetValid":true,"uid":53},{"meta":{"size":30,"name":"entity_teleport","state":"play"},"data":{"entityId":128,"x":-5.93693613576629,"y":-6,"z":7.32379055839074,"yaw":-119,"pitch":20,"onGround":true},"direction":"clientbound","hexIdString":"0x62","raw":[98,128,1,192,23,191,108,47,182,58,50,192,24,0,0,0,0,0,0,64,29,75,143,192,140,42,207,137,20,1],"time":1662326232382,"packetValid":true,"uid":54},{"meta":{"size":26,"name":"position","state":"play"},"data":{"x":-3.5,"y":-8,"z":2.5,"onGround":false},"direction":"serverbound","hexIdString":"0x11","raw":[17,192,12,0,0,0,0,0,0,192,32,0,0,0,0,0,0,64,4,0,0,0,0,0,0,0],"time":1662326232465,"packetValid":true,"uid":55},{"meta":{"size":17,"name":"update_time","state":"play"},"data":{"age":[0,5119],"time":[0,5119]},"direction":"clientbound","hexIdString":"0x59","raw":[89,0,0,0,0,0,0,19,255,0,0,0,0,0,0,19,255],"time":1662326232780,"packetValid":true,"uid":56},{"meta":{"size":26,"name":"position","state":"play"},"data":{"x":-3.5,"y":-8,"z":2.5,"onGround":false},"direction":"serverbound","hexIdString":"0x11","raw":[17,192,12,0,0,0,0,0,0,192,32,0,0,0,0,0,0,64,4,0,0,0,0,0,0,0],"time":1662326233481,"packetValid":true,"uid":57},{"meta":{"size":10,"name":"rel_entity_move","state":"play"},"data":{"entityId":141,"dX":0,"dY":0,"dZ":0,"onGround":true},"direction":"clientbound","hexIdString":"0x29","raw":[41,141,1,0,0,0,0,0,0,1],"time":1662326233483,"packetValid":true,"uid":58},{"meta":{"size":17,"name":"update_time","state":"play"},"data":{"age":[0,5139],"time":[0,5139]},"direction":"clientbound","hexIdString":"0x59","raw":[89,0,0,0,0,0,0,20,19,0,0,0,0,0,0,20,19],"time":1662326233780,"packetValid":true,"uid":59},{"meta":{"size":26,"name":"position","state":"play"},"data":{"x":-3.5,"y":-8,"z":2.5,"onGround":false},"direction":"serverbound","hexIdString":"0x11","raw":[17,192,12,0,0,0,0,0,0,192,32,0,0,0,0,0,0,64,4,0,0,0,0,0,0,0],"time":1662326234539,"packetValid":true,"uid":60},{"meta":{"size":17,"name":"update_time","state":"play"},"data":{"age":[0,5159],"time":[0,5159]},"direction":"clientbound","hexIdString":"0x59","raw":[89,0,0,0,0,0,0,20,39,0,0,0,0,0,0,20,39],"time":1662326234780,"packetValid":true,"uid":61},{"meta":{"size":10,"name":"rel_entity_move","state":"play"},"data":{"entityId":128,"dX":0,"dY":0,"dZ":0,"onGround":true},"direction":"clientbound","hexIdString":"0x29","raw":[41,128,1,0,0,0,0,0,0,1],"time":1662326234981,"packetValid":true,"uid":62},{"meta":{"size":26,"name":"position","state":"play"},"data":{"x":-3.5,"y":-8,"z":2.5,"onGround":false},"direction":"serverbound","hexIdString":"0x11","raw":[17,192,12,0,0,0,0,0,0,192,32,0,0,0,0,0,0,64,4,0,0,0,0,0,0,0],"time":1662326235601,"packetValid":true,"uid":63},{"meta":{"size":17,"name":"update_time","state":"play"},"data":{"age":[0,5179],"time":[0,5179]},"direction":"clientbound","hexIdString":"0x59","raw":[89,0,0,0,0,0,0,20,59,0,0,0,0,0,0,20,59],"time":1662326235781,"packetValid":true,"uid":64},{"meta":{"size":10,"name":"rel_entity_move","state":"play"},"data":{"entityId":141,"dX":0,"dY":0,"dZ":0,"onGround":true},"direction":"clientbound","hexIdString":"0x29","raw":[41,141,1,0,0,0,0,0,0,1],"time":1662326236482,"packetValid":true,"uid":65},{"meta":{"size":26,"name":"position","state":"play"},"data":{"x":-3.5,"y":-8,"z":2.5,"onGround":false},"direction":"serverbound","hexIdString":"0x11","raw":[17,192,12,0,0,0,0,0,0,192,32,0,0,0,0,0,0,64,4,0,0,0,0,0,0,0],"time":1662326236654,"packetValid":true,"uid":66},{"meta":{"size":17,"name":"update_time","state":"play"},"data":{"age":[0,5199],"time":[0,5199]},"direction":"clientbound","hexIdString":"0x59","raw":[89,0,0,0,0,0,0,20,79,0,0,0,0,0,0,20,79],"time":1662326236781,"packetValid":true,"uid":67},{"meta":{"size":26,"name":"position","state":"play"},"data":{"x":-3.5,"y":-8,"z":2.5,"onGround":false},"direction":"serverbound","hexIdString":"0x11","raw":[17,192,12,0,0,0,0,0,0,192,32,0,0,0,0,0,0,64,4,0,0,0,0,0,0,0],"time":1662326237663,"packetValid":true,"uid":68},{"meta":{"size":17,"name":"update_time","state":"play"},"data":{"age":[0,5219],"time":[0,5219]},"direction":"clientbound","hexIdString":"0x59","raw":[89,0,0,0,0,0,0,20,99,0,0,0,0,0,0,20,99],"time":1662326237781,"packetValid":true,"uid":69},{"meta":{"size":312,"name":"chat","state":"play"},"data":{"message":"{\"translate\":\"chat.type.text\",\"with\":[{\"insertion\":\"isbd\",\"clickEvent\":{\"action\":\"suggest_command\",\"value\":\"/tell isbd \"},\"hoverEvent\":{\"action\":\"show_entity\",\"contents\":{\"type\":\"minecraft:player\",\"id\":\"5d7fc6d7-8a36-4995-a824-6a95937ace04\",\"name\":{\"text\":\"isbd\"}}},\"text\":\"isbd\"},\"forward\"]}","position":0,"sender":"5d7fc6d7-8a36-4995-a824-6a95937ace04"},"direction":"clientbound","hexIdString":"0x0f","raw":[15,164,2,123,34,116,114,97,110,115,108,97,116,101,34,58,34,99,104,97,116,46,116,121,112,101,46,116,101,120,116,34,44,34,119,105,116,104,34,58,91,123,34,105,110,115,101,114,116,105,111,110,34,58,34,105,115,98,100,34,44,34,99,108,105,99,107,69,118,101,110,116,34,58,123,34,97,99,116,105,111,110,34,58,34,115,117,103,103,101,115,116,95,99,111,109,109,97,110,100,34,44,34,118,97,108,117,101,34,58,34,47,116,101,108,108,32,105,115,98,100,32,34,125,44,34,104,111,118,101,114,69,118,101,110,116,34,58,123,34,97,99,116,105,111,110,34,58,34,115,104,111,119,95,101,110,116,105,116,121,34,44,34,99,111,110,116,101,110,116,115,34,58,123,34,116,121,112,101,34,58,34,109,105,110,101,99,114,97,102,116,58,112,108,97,121,101,114,34,44,34,105,100,34,58,34,53,100,55,102,99,54,100,55,45,56,97,51,54,45,52,57,57,53,45,97,56,50,52,45,54,97,57,53,57,51,55,97,99,101,48,52,34,44,34,110,97,109,101,34,58,123,34,116,101,120,116,34,58,34,105,115,98,100,34,125,125,125,44,34,116,101,120,116,34,58,34,105,115,98,100,34,125,44,34,102,111,114,119,97,114,100,34,93,125,0,93,127,198,215,138,54,73,149,168,36,106,149,147,122,206,4],"time":1662326237946,"packetValid":true,"uid":70},{"meta":{"size":10,"name":"steer_vehicle","state":"play"},"data":{"sideways":1,"forward":1,"jump":1},"direction":"serverbound","hexIdString":"0x1c","raw":[28,63,128,0,0,63,128,0,0,1],"time":1662326237969,"packetValid":true,"uid":71},{"meta":{"size":10,"name":"rel_entity_move","state":"play"},"data":{"entityId":128,"dX":0,"dY":0,"dZ":0,"onGround":true},"direction":"clientbound","hexIdString":"0x29","raw":[41,128,1,0,0,0,0,0,0,1],"time":1662326237982,"packetValid":true,"uid":72},{"meta":{"size":26,"name":"position","state":"play"},"data":{"x":-3.5,"y":-8,"z":2.5,"onGround":false},"direction":"serverbound","hexIdString":"0x11","raw":[17,192,12,0,0,0,0,0,0,192,32,0,0,0,0,0,0,64,4,0,0,0,0,0,0,0],"time":1662326238708,"packetValid":true,"uid":73},{"meta":{"size":17,"name":"update_time","state":"play"},"data":{"age":[0,5239],"time":[0,5239]},"direction":"clientbound","hexIdString":"0x59","raw":[89,0,0,0,0,0,0,20,119,0,0,0,0,0,0,20,119],"time":1662326238781,"packetValid":true,"uid":74},{"meta":{"size":6,"name":"entity_look","state":"play"},"data":{"entityId":128,"yaw":-121,"pitch":21,"onGround":true},"direction":"clientbound","hexIdString":"0x2b","raw":[43,128,1,135,21,1],"time":1662326239182,"packetValid":true,"uid":75},{"meta":{"size":6,"name":"entity_look","state":"play"},"data":{"entityId":128,"yaw":-124,"pitch":24,"onGround":true},"direction":"clientbound","hexIdString":"0x2b","raw":[43,128,1,132,24,1],"time":1662326239283,"packetValid":true,"uid":76},{"meta":{"size":4,"name":"entity_head_rotation","state":"play"},"data":{"entityId":128,"headYaw":-123},"direction":"clientbound","hexIdString":"0x3e","raw":[62,128,1,133],"time":1662326239283,"packetValid":true,"uid":77},{"meta":{"size":6,"name":"entity_look","state":"play"},"data":{"entityId":128,"yaw":-126,"pitch":26,"onGround":true},"direction":"clientbound","hexIdString":"0x2b","raw":[43,128,1,130,26,1],"time":1662326239382,"packetValid":true,"uid":78},{"meta":{"size":4,"name":"entity_head_rotation","state":"play"},"data":{"entityId":128,"headYaw":-125},"direction":"clientbound","hexIdString":"0x3e","raw":[62,128,1,131],"time":1662326239382,"packetValid":true,"uid":79},{"meta":{"size":4,"name":"entity_head_rotation","state":"play"},"data":{"entityId":128,"headYaw":-126},"direction":"clientbound","hexIdString":"0x3e","raw":[62,128,1,130],"time":1662326239483,"packetValid":true,"uid":80},{"meta":{"size":10,"name":"rel_entity_move","state":"play"},"data":{"entityId":141,"dX":0,"dY":0,"dZ":0,"onGround":true},"direction":"clientbound","hexIdString":"0x29","raw":[41,141,1,0,0,0,0,0,0,1],"time":1662326239483,"packetValid":true,"uid":81},{"meta":{"size":9,"name":"keep_alive","state":"play"},"data":{"keepAliveId":[0,972515]},"direction":"clientbound","hexIdString":"0x21","raw":[33,0,0,0,0,0,14,214,227],"time":1662326239734,"packetValid":true,"uid":82},{"meta":{"size":9,"name":"keep_alive","state":"play"},"data":{"keepAliveId":[0,972515]},"direction":"serverbound","hexIdString":"0x0f","raw":[15,0,0,0,0,0,14,214,227],"time":1662326239735,"packetValid":true,"uid":83},{"meta":{"size":26,"name":"position","state":"play"},"data":{"x":-3.5,"y":-8,"z":2.5,"onGround":false},"direction":"serverbound","hexIdString":"0x11","raw":[17,192,12,0,0,0,0,0,0,192,32,0,0,0,0,0,0,64,4,0,0,0,0,0,0,0],"time":1662326239768,"packetValid":true,"uid":84},{"meta":{"size":17,"name":"update_time","state":"play"},"data":{"age":[0,5259],"time":[0,5259]},"direction":"clientbound","hexIdString":"0x59","raw":[89,0,0,0,0,0,0,20,139,0,0,0,0,0,0,20,139],"time":1662326239780,"packetValid":true,"uid":85},{"meta":{"size":6,"name":"entity_look","state":"play"},"data":{"entityId":128,"yaw":126,"pitch":26,"onGround":true},"direction":"clientbound","hexIdString":"0x2b","raw":[43,128,1,126,26,1],"time":1662326240183,"packetValid":true,"uid":86},{"meta":{"size":6,"name":"entity_look","state":"play"},"data":{"entityId":128,"yaw":110,"pitch":32,"onGround":true},"direction":"clientbound","hexIdString":"0x2b","raw":[43,128,1,110,32,1],"time":1662326240283,"packetValid":true,"uid":87},{"meta":{"size":4,"name":"entity_head_rotation","state":"play"},"data":{"entityId":128,"headYaw":116},"direction":"clientbound","hexIdString":"0x3e","raw":[62,128,1,116],"time":1662326240283,"packetValid":true,"uid":88},{"meta":{"size":6,"name":"entity_look","state":"play"},"data":{"entityId":128,"yaw":109,"pitch":33,"onGround":true},"direction":"clientbound","hexIdString":"0x2b","raw":[43,128,1,109,33,1],"time":1662326240383,"packetValid":true,"uid":89},{"meta":{"size":4,"name":"entity_head_rotation","state":"play"},"data":{"entityId":128,"headYaw":109},"direction":"clientbound","hexIdString":"0x3e","raw":[62,128,1,109],"time":1662326240383,"packetValid":true,"uid":90},{"meta":{"size":17,"name":"update_time","state":"play"},"data":{"age":[0,5279],"time":[0,5279]},"direction":"clientbound","hexIdString":"0x59","raw":[89,0,0,0,0,0,0,20,159,0,0,0,0,0,0,20,159],"time":1662326240781,"packetValid":true,"uid":91},{"meta":{"size":26,"name":"position","state":"play"},"data":{"x":-3.5,"y":-8,"z":2.5,"onGround":false},"direction":"serverbound","hexIdString":"0x11","raw":[17,192,12,0,0,0,0,0,0,192,32,0,0,0,0,0,0,64,4,0,0,0,0,0,0,0],"time":1662326240782,"packetValid":true,"uid":92},{"meta":{"size":6,"name":"entity_look","state":"play"},"data":{"entityId":128,"yaw":117,"pitch":32,"onGround":true},"direction":"clientbound","hexIdString":"0x2b","raw":[43,128,1,117,32,1],"time":1662326240784,"packetValid":true,"uid":93},{"meta":{"size":4,"name":"entity_head_rotation","state":"play"},"data":{"entityId":128,"headYaw":111},"direction":"clientbound","hexIdString":"0x3e","raw":[62,128,1,111],"time":1662326240785,"packetValid":true,"uid":94},{"meta":{"size":6,"name":"entity_look","state":"play"},"data":{"entityId":128,"yaw":118,"pitch":32,"onGround":true},"direction":"clientbound","hexIdString":"0x2b","raw":[43,128,1,118,32,1],"time":1662326240882,"packetValid":true,"uid":95},{"meta":{"size":4,"name":"entity_head_rotation","state":"play"},"data":{"entityId":128,"headYaw":118},"direction":"clientbound","hexIdString":"0x3e","raw":[62,128,1,118],"time":1662326240882,"packetValid":true,"uid":96},{"meta":{"size":12,"name":"entity_move_look","state":"play"},"data":{"entityId":128,"dX":0,"dY":0,"dZ":0,"yaw":119,"pitch":32,"onGround":true},"direction":"clientbound","hexIdString":"0x2a","raw":[42,128,1,0,0,0,0,0,0,119,32,1],"time":1662326240983,"packetValid":true,"uid":97},{"meta":{"size":4,"name":"entity_head_rotation","state":"play"},"data":{"entityId":128,"headYaw":119},"direction":"clientbound","hexIdString":"0x3e","raw":[62,128,1,119],"time":1662326240983,"packetValid":true,"uid":98},{"meta":{"size":6,"name":"entity_look","state":"play"},"data":{"entityId":128,"yaw":120,"pitch":31,"onGround":true},"direction":"clientbound","hexIdString":"0x2b","raw":[43,128,1,120,31,1],"time":1662326241183,"packetValid":true,"uid":99},{"meta":{"size":6,"name":"entity_look","state":"play"},"data":{"entityId":128,"yaw":121,"pitch":29,"onGround":true},"direction":"clientbound","hexIdString":"0x2b","raw":[43,128,1,121,29,1],"time":1662326241283,"packetValid":true,"uid":100},{"meta":{"size":4,"name":"entity_head_rotation","state":"play"},"data":{"entityId":128,"headYaw":121},"direction":"clientbound","hexIdString":"0x3e","raw":[62,128,1,121],"time":1662326241283,"packetValid":true,"uid":101},{"meta":{"size":6,"name":"entity_look","state":"play"},"data":{"entityId":128,"yaw":121,"pitch":28,"onGround":true},"direction":"clientbound","hexIdString":"0x2b","raw":[43,128,1,121,28,1],"time":1662326241383,"packetValid":true,"uid":102},{"meta":{"size":6,"name":"entity_look","state":"play"},"data":{"entityId":128,"yaw":122,"pitch":28,"onGround":true},"direction":"clientbound","hexIdString":"0x2b","raw":[43,128,1,122,28,1],"time":1662326241483,"packetValid":true,"uid":103},{"meta":{"size":4,"name":"entity_head_rotation","state":"play"},"data":{"entityId":128,"headYaw":122},"direction":"clientbound","hexIdString":"0x3e","raw":[62,128,1,122],"time":1662326241483,"packetValid":true,"uid":104},{"meta":{"size":17,"name":"update_time","state":"play"},"data":{"age":[0,5299],"time":[0,5299]},"direction":"clientbound","hexIdString":"0x59","raw":[89,0,0,0,0,0,0,20,179,0,0,0,0,0,0,20,179],"time":1662326241780,"packetValid":true,"uid":105},{"meta":{"size":26,"name":"position","state":"play"},"data":{"x":-3.5,"y":-8,"z":2.5,"onGround":false},"direction":"serverbound","hexIdString":"0x11","raw":[17,192,12,0,0,0,0,0,0,192,32,0,0,0,0,0,0,64,4,0,0,0,0,0,0,0],"time":1662326241843,"packetValid":true,"uid":106},{"meta":{"size":10,"name":"rel_entity_move","state":"play"},"data":{"entityId":141,"dX":0,"dY":0,"dZ":0,"onGround":true},"direction":"clientbound","hexIdString":"0x29","raw":[41,141,1,0,0,0,0,0,0,1],"time":1662326242481,"packetValid":true,"uid":107},{"meta":{"size":17,"name":"update_time","state":"play"},"data":{"age":[0,5319],"time":[0,5319]},"direction":"clientbound","hexIdString":"0x59","raw":[89,0,0,0,0,0,0,20,199,0,0,0,0,0,0,20,199],"time":1662326242780,"packetValid":true,"uid":108},{"meta":{"size":26,"name":"position","state":"play"},"data":{"x":-3.5,"y":-8,"z":2.5,"onGround":false},"direction":"serverbound","hexIdString":"0x11","raw":[17,192,12,0,0,0,0,0,0,192,32,0,0,0,0,0,0,64,4,0,0,0,0,0,0,0],"time":1662326242903,"packetValid":true,"uid":109},{"meta":{"size":17,"name":"update_time","state":"play"},"data":{"age":[0,5339],"time":[0,5339]},"direction":"clientbound","hexIdString":"0x59","raw":[89,0,0,0,0,0,0,20,219,0,0,0,0,0,0,20,219],"time":1662326243780,"packetValid":true,"uid":110},{"meta":{"size":26,"name":"position","state":"play"},"data":{"x":-3.5,"y":-8,"z":2.5,"onGround":false},"direction":"serverbound","hexIdString":"0x11","raw":[17,192,12,0,0,0,0,0,0,192,32,0,0,0,0,0,0,64,4,0,0,0,0,0,0,0],"time":1662326243963,"packetValid":true,"uid":111},{"meta":{"size":10,"name":"rel_entity_move","state":"play"},"data":{"entityId":128,"dX":0,"dY":0,"dZ":0,"onGround":true},"direction":"clientbound","hexIdString":"0x29","raw":[41,128,1,0,0,0,0,0,0,1],"time":1662326243981,"packetValid":true,"uid":112},{"meta":{"size":17,"name":"update_time","state":"play"},"data":{"age":[0,5359],"time":[0,5359]},"direction":"clientbound","hexIdString":"0x59","raw":[89,0,0,0,0,0,0,20,239,0,0,0,0,0,0,20,239],"time":1662326244781,"packetValid":true,"uid":113},{"meta":{"size":26,"name":"position","state":"play"},"data":{"x":-3.5,"y":-8,"z":2.5,"onGround":false},"direction":"serverbound","hexIdString":"0x11","raw":[17,192,12,0,0,0,0,0,0,192,32,0,0,0,0,0,0,64,4,0,0,0,0,0,0,0],"time":1662326244973,"packetValid":true,"uid":114},{"meta":{"size":10,"name":"rel_entity_move","state":"play"},"data":{"entityId":141,"dX":0,"dY":0,"dZ":0,"onGround":true},"direction":"clientbound","hexIdString":"0x29","raw":[41,141,1,0,0,0,0,0,0,1],"time":1662326245482,"packetValid":true,"uid":115},{"meta":{"size":17,"name":"update_time","state":"play"},"data":{"age":[0,5379],"time":[0,5379]},"direction":"clientbound","hexIdString":"0x59","raw":[89,0,0,0,0,0,0,21,3,0,0,0,0,0,0,21,3],"time":1662326245780,"packetValid":true,"uid":116},{"meta":{"size":26,"name":"position","state":"play"},"data":{"x":-3.5,"y":-8,"z":2.5,"onGround":false},"direction":"serverbound","hexIdString":"0x11","raw":[17,192,12,0,0,0,0,0,0,192,32,0,0,0,0,0,0,64,4,0,0,0,0,0,0,0],"time":1662326246026,"packetValid":true,"uid":117},{"meta":{"size":17,"name":"update_time","state":"play"},"data":{"age":[0,5399],"time":[0,5399]},"direction":"clientbound","hexIdString":"0x59","raw":[89,0,0,0,0,0,0,21,23,0,0,0,0,0,0,21,23],"time":1662326246781,"packetValid":true,"uid":118},{"meta":{"size":10,"name":"rel_entity_move","state":"play"},"data":{"entityId":128,"dX":0,"dY":0,"dZ":0,"onGround":true},"direction":"clientbound","hexIdString":"0x29","raw":[41,128,1,0,0,0,0,0,0,1],"time":1662326246983,"packetValid":true,"uid":119},{"meta":{"size":26,"name":"position","state":"play"},"data":{"x":-3.5,"y":-8,"z":2.5,"onGround":false},"direction":"serverbound","hexIdString":"0x11","raw":[17,192,12,0,0,0,0,0,0,192,32,0,0,0,0,0,0,64,4,0,0,0,0,0,0,0],"time":1662326247084,"packetValid":true,"uid":120},{"meta":{"size":37,"name":"player_info","state":"play"},"data":{"action":2,"data":[{"UUID":"5d7fc6d7-8a36-4995-a824-6a95937ace04","ping":0},{"UUID":"f2062114-60c7-4ceb-9f93-db5dbb6f998a","ping":0}]},"direction":"clientbound","hexIdString":"0x36","raw":[54,2,2,93,127,198,215,138,54,73,149,168,36,106,149,147,122,206,4,0,242,6,33,20,96,199,76,235,159,147,219,93,187,111,153,138,0],"time":1662326247233,"packetValid":true,"uid":121},{"meta":{"size":17,"name":"update_time","state":"play"},"data":{"age":[0,5419],"time":[0,5419]},"direction":"clientbound","hexIdString":"0x59","raw":[89,0,0,0,0,0,0,21,43,0,0,0,0,0,0,21,43],"time":1662326247780,"packetValid":true,"uid":122},{"meta":{"size":26,"name":"position","state":"play"},"data":{"x":-3.5,"y":-8,"z":2.5,"onGround":false},"direction":"serverbound","hexIdString":"0x11","raw":[17,192,12,0,0,0,0,0,0,192,32,0,0,0,0,0,0,64,4,0,0,0,0,0,0,0],"time":1662326248090,"packetValid":true,"uid":123},{"meta":{"size":10,"name":"rel_entity_move","state":"play"},"data":{"entityId":141,"dX":0,"dY":0,"dZ":0,"onGround":true},"direction":"clientbound","hexIdString":"0x29","raw":[41,141,1,0,0,0,0,0,0,1],"time":1662326248483,"packetValid":true,"uid":124},{"meta":{"size":17,"name":"update_time","state":"play"},"data":{"age":[0,5439],"time":[0,5439]},"direction":"clientbound","hexIdString":"0x59","raw":[89,0,0,0,0,0,0,21,63,0,0,0,0,0,0,21,63],"time":1662326248781,"packetValid":true,"uid":125},{"meta":{"size":26,"name":"position","state":"play"},"data":{"x":-3.5,"y":-8,"z":2.5,"onGround":false},"direction":"serverbound","hexIdString":"0x11","raw":[17,192,12,0,0,0,0,0,0,192,32,0,0,0,0,0,0,64,4,0,0,0,0,0,0,0],"time":1662326249098,"packetValid":true,"uid":126},{"meta":{"size":17,"name":"update_time","state":"play"},"data":{"age":[0,5459],"time":[0,5459]},"direction":"clientbound","hexIdString":"0x59","raw":[89,0,0,0,0,0,0,21,83,0,0,0,0,0,0,21,83],"time":1662326249781,"packetValid":true,"uid":127},{"meta":{"size":10,"name":"rel_entity_move","state":"play"},"data":{"entityId":128,"dX":0,"dY":0,"dZ":0,"onGround":true},"direction":"clientbound","hexIdString":"0x29","raw":[41,128,1,0,0,0,0,0,0,1],"time":1662326249982,"packetValid":true,"uid":128},{"meta":{"size":26,"name":"position","state":"play"},"data":{"x":-3.5,"y":-8,"z":2.5,"onGround":false},"direction":"serverbound","hexIdString":"0x11","raw":[17,192,12,0,0,0,0,0,0,192,32,0,0,0,0,0,0,64,4,0,0,0,0,0,0,0],"time":1662326250156,"packetValid":true,"uid":129},{"meta":{"size":30,"name":"entity_teleport","state":"play"},"data":{"entityId":141,"x":-6.837960946160219,"y":-8,"z":4.909426718721093,"yaw":6,"pitch":0,"onGround":true},"direction":"clientbound","hexIdString":"0x62","raw":[98,141,1,192,27,90,18,111,44,85,92,192,32,0,0,0,0,0,0,64,19,163,64,193,252,16,16,6,0,1],"time":1662326250432,"packetValid":true,"uid":130},{"meta":{"size":17,"name":"update_time","state":"play"},"data":{"age":[0,5479],"time":[0,5479]},"direction":"clientbound","hexIdString":"0x59","raw":[89,0,0,0,0,0,0,21,103,0,0,0,0,0,0,21,103],"time":1662326250780,"packetValid":true,"uid":131},{"meta":{"size":26,"name":"position","state":"play"},"data":{"x":-3.5,"y":-8,"z":2.5,"onGround":false},"direction":"serverbound","hexIdString":"0x11","raw":[17,192,12,0,0,0,0,0,0,192,32,0,0,0,0,0,0,64,4,0,0,0,0,0,0,0],"time":1662326251212,"packetValid":true,"uid":132},{"meta":{"size":10,"name":"rel_entity_move","state":"play"},"data":{"entityId":141,"dX":0,"dY":0,"dZ":0,"onGround":true},"direction":"clientbound","hexIdString":"0x29","raw":[41,141,1,0,0,0,0,0,0,1],"time":1662326251482,"packetValid":true,"uid":133},{"meta":{"size":17,"name":"update_time","state":"play"},"data":{"age":[0,5499],"time":[0,5499]},"direction":"clientbound","hexIdString":"0x59","raw":[89,0,0,0,0,0,0,21,123,0,0,0,0,0,0,21,123],"time":1662326251781,"packetValid":true,"uid":134},{"meta":{"size":26,"name":"position","state":"play"},"data":{"x":-3.5,"y":-8,"z":2.5,"onGround":false},"direction":"serverbound","hexIdString":"0x11","raw":[17,192,12,0,0,0,0,0,0,192,32,0,0,0,0,0,0,64,4,0,0,0,0,0,0,0],"time":1662326252269,"packetValid":true,"uid":135},{"meta":{"size":17,"name":"update_time","state":"play"},"data":{"age":[0,5519],"time":[0,5519]},"direction":"clientbound","hexIdString":"0x59","raw":[89,0,0,0,0,0,0,21,143,0,0,0,0,0,0,21,143],"time":1662326252780,"packetValid":true,"uid":136},{"meta":{"size":10,"name":"rel_entity_move","state":"play"},"data":{"entityId":128,"dX":0,"dY":0,"dZ":0,"onGround":true},"direction":"clientbound","hexIdString":"0x29","raw":[41,128,1,0,0,0,0,0,0,1],"time":1662326252982,"packetValid":true,"uid":137},{"meta":{"size":26,"name":"position","state":"play"},"data":{"x":-3.5,"y":-8,"z":2.5,"onGround":false},"direction":"serverbound","hexIdString":"0x11","raw":[17,192,12,0,0,0,0,0,0,192,32,0,0,0,0,0,0,64,4,0,0,0,0,0,0,0],"time":1662326253330,"packetValid":true,"uid":138},{"meta":{"size":17,"name":"update_time","state":"play"},"data":{"age":[0,5539],"time":[0,5539]},"direction":"clientbound","hexIdString":"0x59","raw":[89,0,0,0,0,0,0,21,163,0,0,0,0,0,0,21,163],"time":1662326253780,"packetValid":true,"uid":139},{"meta":{"size":26,"name":"position","state":"play"},"data":{"x":-3.5,"y":-8,"z":2.5,"onGround":false},"direction":"serverbound","hexIdString":"0x11","raw":[17,192,12,0,0,0,0,0,0,192,32,0,0,0,0,0,0,64,4,0,0,0,0,0,0,0],"time":1662326254332,"packetValid":true,"uid":140},{"meta":{"size":10,"name":"rel_entity_move","state":"play"},"data":{"entityId":141,"dX":0,"dY":0,"dZ":0,"onGround":true},"direction":"clientbound","hexIdString":"0x29","raw":[41,141,1,0,0,0,0,0,0,1],"time":1662326254482,"packetValid":true,"uid":141},{"meta":{"size":24,"name":"sound_effect","state":"play"},"data":{"soundId":493,"soundCategory":6,"x":-54,"y":-64,"z":39,"volume":0.800000011920929,"pitch":0.8526731729507446},"direction":"clientbound","hexIdString":"0x5d","raw":[93,237,3,6,255,255,255,202,255,255,255,192,0,0,0,39,63,76,204,205,63,90,72,202],"time":1662326254534,"packetValid":true,"uid":142},{"meta":{"size":17,"name":"update_time","state":"play"},"data":{"age":[0,5559],"time":[0,5559]},"direction":"clientbound","hexIdString":"0x59","raw":[89,0,0,0,0,0,0,21,183,0,0,0,0,0,0,21,183],"time":1662326254780,"packetValid":true,"uid":143},{"meta":{"size":9,"name":"keep_alive","state":"play"},"data":{"keepAliveId":[0,987565]},"direction":"clientbound","hexIdString":"0x21","raw":[33,0,0,0,0,0,15,17,173],"time":1662326254784,"packetValid":true,"uid":144},{"meta":{"size":9,"name":"keep_alive","state":"play"},"data":{"keepAliveId":[0,987565]},"direction":"serverbound","hexIdString":"0x0f","raw":[15,0,0,0,0,0,15,17,173],"time":1662326254785,"packetValid":true,"uid":145},{"meta":{"size":26,"name":"position","state":"play"},"data":{"x":-3.5,"y":-8,"z":2.5,"onGround":false},"direction":"serverbound","hexIdString":"0x11","raw":[17,192,12,0,0,0,0,0,0,192,32,0,0,0,0,0,0,64,4,0,0,0,0,0,0,0],"time":1662326255396,"packetValid":true,"uid":146},{"meta":{"size":17,"name":"update_time","state":"play"},"data":{"age":[0,5579],"time":[0,5579]},"direction":"clientbound","hexIdString":"0x59","raw":[89,0,0,0,0,0,0,21,203,0,0,0,0,0,0,21,203],"time":1662326255780,"packetValid":true,"uid":147},{"meta":{"size":10,"name":"rel_entity_move","state":"play"},"data":{"entityId":128,"dX":0,"dY":0,"dZ":0,"onGround":true},"direction":"clientbound","hexIdString":"0x29","raw":[41,128,1,0,0,0,0,0,0,1],"time":1662326255982,"packetValid":true,"uid":148},{"meta":{"size":26,"name":"position","state":"play"},"data":{"x":-3.5,"y":-8,"z":2.5,"onGround":false},"direction":"serverbound","hexIdString":"0x11","raw":[17,192,12,0,0,0,0,0,0,192,32,0,0,0,0,0,0,64,4,0,0,0,0,0,0,0],"time":1662326256397,"packetValid":true,"uid":149},{"meta":{"size":17,"name":"update_time","state":"play"},"data":{"age":[0,5599],"time":[0,5599]},"direction":"clientbound","hexIdString":"0x59","raw":[89,0,0,0,0,0,0,21,223,0,0,0,0,0,0,21,223],"time":1662326256780,"packetValid":true,"uid":150},{"meta":{"size":26,"name":"position","state":"play"},"data":{"x":-3.5,"y":-8,"z":2.5,"onGround":false},"direction":"serverbound","hexIdString":"0x11","raw":[17,192,12,0,0,0,0,0,0,192,32,0,0,0,0,0,0,64,4,0,0,0,0,0,0,0],"time":1662326257407,"packetValid":true,"uid":151},{"meta":{"size":10,"name":"rel_entity_move","state":"play"},"data":{"entityId":141,"dX":0,"dY":0,"dZ":0,"onGround":true},"direction":"clientbound","hexIdString":"0x29","raw":[41,141,1,0,0,0,0,0,0,1],"time":1662326257482,"packetValid":true,"uid":152},{"meta":{"size":17,"name":"update_time","state":"play"},"data":{"age":[0,5619],"time":[0,5619]},"direction":"clientbound","hexIdString":"0x59","raw":[89,0,0,0,0,0,0,21,243,0,0,0,0,0,0,21,243],"time":1662326257780,"packetValid":true,"uid":153},{"meta":{"size":26,"name":"position","state":"play"},"data":{"x":-3.5,"y":-8,"z":2.5,"onGround":false},"direction":"serverbound","hexIdString":"0x11","raw":[17,192,12,0,0,0,0,0,0,192,32,0,0,0,0,0,0,64,4,0,0,0,0,0,0,0],"time":1662326258463,"packetValid":true,"uid":154},{"meta":{"size":17,"name":"update_time","state":"play"},"data":{"age":[0,5639],"time":[0,5639]},"direction":"clientbound","hexIdString":"0x59","raw":[89,0,0,0,0,0,0,22,7,0,0,0,0,0,0,22,7],"time":1662326258780,"packetValid":true,"uid":155},{"meta":{"size":10,"name":"rel_entity_move","state":"play"},"data":{"entityId":128,"dX":0,"dY":0,"dZ":0,"onGround":true},"direction":"clientbound","hexIdString":"0x29","raw":[41,128,1,0,0,0,0,0,0,1],"time":1662326258981,"packetValid":true,"uid":156}]
isbd commented 2 years ago

Here's example code snippet and video of another test for moveVehicle movement.

https://user-images.githubusercontent.com/47763851/188334461-135fbdde-6a41-4a0c-8f06-eb2b11d1f6c7.mp4 Code

This is the id of the help ticket discussion on discord 1016039420551516220

isbd commented 2 years ago

2022-09-06_12 35 28 Also looks like the bot is frozen just being mounted to the horse. Floats when blocks are removed