blob: 4114eec2b81774b9c017e10b0565c00e712716a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
import constants from "../../util/constants"
import { waypointRender } from "../../util/helperFunctions"
const PREFIX = constants.PREFIX
let waypoints = []
export function automatons(arg)
{
const WAYPOINTNAME = "Automatons"
if(arg != "toggle")
{
new TextComponent(`${PREFIX}&bStand in the pot in &3this&b picture and do /cw ${WAYPOINTNAME} toggle`)
.setClickAction("open_url")
.setClickValue("https://media.discordapp.net/attachments/1049475464667856926/1052749218055475210/image.png")
.chat()
}
else
{
if(waypoints[0] == undefined)
{
let startPos = [Player.getX(), Player.getY(), Player.getZ()],
x = startPos[0],
y = startPos[1],
z = startPos[2]
let coordsRows = FileLib.read("Coleweight", "data/automatons.txt").split("\r\n")
coordsRows.forEach(unsplitRow => {
let row = unsplitRow.split(" ")
waypoints.push([x + parseInt(row[0]), y + parseInt(row[1]), z + parseInt(row[2])])
})
ChatLib.chat(`${PREFIX}&b${WAYPOINTNAME} waypoints turned on!`)
}
else
{
waypoints = []
ChatLib.chat(`${PREFIX}&b${WAYPOINTNAME} waypoints turned off!`)
}
}
}
register("renderWorld", () => {
waypointRender(waypoints)
})
register("worldLoad", () => {
waypoints = []
})
export default ""
|