bot.emit('lookAtPos', { x: 0, y: 0, z: 0 });
// legacy dispatches: bot.dispatch(new LookAtPosDispatch({ x: 0, y: 0, z: 0 }));
position (object): An object containing the X, Y, and Z coordinates to look at. The object should have the following properties:
x (number): The X coordinate.y (number): The Y coordinate.z (number): The Z coordinate.bot.emit('lookAtPos', { x: 0, y: 0, z: 0 });
// legacy dispatches: bot.dispatch(new LookAtPosDispatch({ x: 0, y: 0, z: 0 }));
position (object): An object containing the X, Y, and Z coordinates to look at. The object should have the following properties:
x (number): The X coordinate.y (number): The Y coordinate.z (number): The Z coordinate.