minecrafthawkeye
Version:
Minecraft bot for equations when shooting an arrow
15 lines (14 loc) • 489 B
TypeScript
import { Box } from "detect-collisions";
import { Vec3 } from "vec3";
import { BoxColission } from "./types";
import { Entity } from 'prismarine-entity';
export declare const detectAim: () => Record<string, {
uuid: string;
entity: Entity;
name: string;
prevTrajectory: Array<Vec3>;
}>;
export declare const getBotBoxes: () => BoxColission;
export declare const botBoxTall: () => Box;
export declare const startRadar: () => void;
export declare const stopRadar: () => void;