forked from DonaterYu/AternosBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
361 lines (353 loc) · 12.2 KB
/
index.js
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
if (
(process.argv.length < 3 || process.argv.length > 6) &&
!process.env.server
) {
console.log(
"Используйте бота так: node index.js <IP адрес сервера> [<имя аккаунта>] [<пароль от аккаунта>]"
);
process.exit(1);
}
let moveDelay = 10000,
awaitingInput = false,
awaitingCustomInput = false,
moveTimeoutActive = false,
rejoin = true,
mc = require("minecraft-protocol");
if (process.env.dsbot) {
let Discord = require("discord.js"),
DSclient = new Discord.Client();
DSclient.once("ready", () => {
console.log("Я зашёл в дискорд сервер.");
});
DSclient.on("message", message => {
if (message.author.username == DSclient.user.username)
if (message.channel.name != "minecraft-bot") return;
const args = message.content
.slice(1)
.trim()
.split(/ +/g);
if (!args[0].toLowerCase().startsWith("написать")) return;
let text = args
.slice(1)
.toString()
.replace(/,/g, " ");
client.write("chat", { message: text });
console.log(`Сообщение через Discord: ${text}`);
message.channel.send("Успешно отправил сообщение!");
});
DSclient.login(process.env.dsbot);
}
const sleep = ms => {
return new Promise(resolve => setTimeout(resolve, ms));
};
const translateBoolean = boolean => {
return boolean === true ? "Да" : boolean === false ? "Нет" : null;
};
const startmc = (server, username) => {
return mc.createClient({
host: server,
port: process.env.port ? process.env.port : null,
username: username,
password: process.env.password
? process.env.password
: process.argv[4]
? process.argv[4]
: null
});
};
const msToSeconds = ms => {
return ms / 1000;
};
let client = startmc(
process.env.server ? process.env.server : process.argv[2],
process.env.nick
? process.env.nick
: process.argv[3]
? process.argv[3]
: "AternosBot"
);
const bindEvents = () => {
client.on("error", err => {
switch (err) {
case "Error: Invalid credentials. Invalid username or password.":
console.log(
`Неверный логин [${process.argv[3]}] или пароль [${
process.argv[4]
}] от аккаунта!`
);
process.exit(1);
break;
case `Error: getaddrinfo ENOTFOUND ${process.argv[2]}`:
console.log(`Неправильный IP адресс сервера! [${process.argv[2]}]`);
process.exit(1);
break;
case "TypeError: Cannot read property 'name' of undefined":
console.log("Сервер ещё запускается. Попробуйте позже.");
process.exit(1);
break;
default:
console.log(err);
}
});
client.on("connect", () => {
console.log(
`Пытаюсь зайти на сервер ${
process.env.server ? process.env.server : process.argv[2]
} под ником ${client.username} ${
process.argv[4] ? "(лицензия)..." : "(пиратка)..."
}`
);
});
client.on("kick_disconnect", packet => {
if (!packet.reason || !JSON.parse(packet.reason).translate) return;
if (
packet.reason &&
packet.reason.match("You are trying to connect to") &&
packet.reason.match("This server is offline")
)
return console.log("Сервер выключен!");
console.log(
"Бот вышел с сервера. Причина: " + JSON.parse(packet.reason).translate
);
if (
JSON.parse(packet.reason).translate ==
"multiplayer.disconnect.duplicate_login"
) {
client.end();
(awaitingCustomInput = false), (moveTimeoutActive = true);
client = startmc(
process.env.server ? process.env.server : process.argv[2],
process.env.nick
? process.env.nick
: process.argv[3]
? process.argv[3]
: "AternosBot"
);
bindEvents();
return;
}
if (rejoin) {
client.end();
(awaitingCustomInput = false), (moveTimeoutActive = true);
client = startmc(
process.env.server ? process.env.server : process.argv[2],
process.env.nick
? process.env.nick
: process.argv[3]
? process.argv[3]
: "AternosBot"
);
bindEvents();
} else {
process.exit(1);
}
});
client.on("position", packet => {
client.position = packet;
});
client.on("chat", async packet => {
let parsedMessage = JSON.parse(packet.message);
console.log(parsedMessage);
if (process.env.debug) console.log(parsedMessage);
if (
parsedMessage.translate != "chat.type.text" ||
parsedMessage.with[0].text == client.username
)
return;
let message = {
text: parsedMessage.with[1],
author: `<${parsedMessage.with[0].text}>`
};
console.log(message.author + " | " + message.text);
if (awaitingCustomInput && awaitingCustomInput == "moveDelay") {
if (isNaN(message.text))
return client.write("chat", {
message: `Значение "${message.text}" не является числом!`
});
client.write("chat", {
message: "Указано новое значение для настройки: Задержка движения"
});
await sleep(100);
client.write("chat", {
message: `(старое значение: ${msToSeconds(
moveDelay
)}с, новое значение: ${message.text}с)`
});
(moveDelay = message.text * 1000), (awaitingCustomInput = false);
}
if (awaitingCustomInput && awaitingCustomInput == "nick") {
client.write("chat", {
message: "Указано новое значение для настройки: Ник"
});
await sleep(100);
client.write("chat", {
message: `(старое значение: ${client.username}, новое значение: ${message.text})`
});
await sleep(100);
(awaitingCustomInput = false), (moveTimeoutActive = true);
client.end();
client = startmc(
process.env.server ? process.env.server : process.argv[2],
message.text
);
bindEvents();
}
if (awaitingInput && message.text == "1") {
client.write("chat", {
message: `Выбрана настройка: Задержка движения (значение: ${msToSeconds(
moveDelay
)}с)`
});
await sleep(100);
client.write("chat", { message: "Укажите новое значение для настройки" });
awaitingCustomInput = "moveDelay";
return (awaitingInput = false);
}
if (awaitingInput && message.text == "2") {
if (process.argv[4])
return client.write("chat", {
message: "Сменить ник на лицензионном сервере нельзя."
});
client.write("chat", {
message: `Выбрана настройка: Ник (значение: ${client.username})`
});
await sleep(100);
client.write("chat", { message: "Укажите новое значение для настройки" });
awaitingCustomInput = "nick";
return (awaitingInput = false);
}
if (awaitingInput && message.text == "3") {
client.write("chat", {
message: "Указано новое значение для настройки: Задержка движения"
});
await sleep(100);
client.write("chat", {
message: `(старое значение: ${translateBoolean(
rejoin
)}, новое значение: ${translateBoolean(!rejoin)})`
});
rejoin = !rejoin;
return (awaitingInput = false);
}
if (awaitingInput) if (!message.text.startsWith("$")) return;
switch (message.text.slice(1).toLowerCase()) {
case "двигайся":
moveTimeoutActive = true;
const move = () => {
if (!moveTimeoutActive) return;
setTimeout(() => {
let dir = Math.floor(Math.random() * (100 - 0));
const changePosition = (packet, direction) => {
const newpacket = {
x:
direction > 75
? packet.x + 0.5
: direction > 50
? packet.x - 0.5
: packet.x,
y: packet.y,
z:
direction < 25
? packet.z + 0.5
: direction < 50
? packet.z - 0.5
: packet.z,
yaw: 0,
pitch: 0,
flags: 0,
teleportId: packet.teleportId
};
client.write("position", newpacket);
client.write("teleport_confirm", {
teleportId: packet.teleportId
});
return newpacket;
};
client.position = changePosition(
{
x: client.position.x,
y: client.position.y,
z: client.position.z,
teleportId: client.position.teleportId
},
dir
);
move();
}, moveDelay);
};
move();
client.write("chat", { message: "Начинаю двигаться..." });
await sleep(100);
client.write("chat", {
message: `Задержка движения: ${msToSeconds(moveDelay)} секунд`
});
await sleep(100);
client.write("chat", {
message: 'Изменить значение можно прописав "$Настройки".'
});
await sleep(100);
client.write("chat", {
message: 'Остановить движение можно прописав "$Стоп".'
});
break;
case "двигайся-круг":
const moveInCircle = () => {
}
const calculateCoordinates = (originalCoordinates) => {
let { x, y, z } = originalCoordinates
let newX = x + 2
}
case "стоп":
if (!moveTimeoutActive)
return client.write("chat", { message: "Бот не двигается." });
moveTimeoutActive = false;
client.write("chat", { message: `Движение бота остановлено.` });
break;
case "настройки":
if (awaitingInput) {
awaitingInput = false;
return client.write("chat", { message: "Отменил выбор настроек." });
}
if (awaitingCustomInput) {
awaitingCustomInput = false;
return client.write("chat", {
message: "Отменил измение настройки."
});
}
client.write("chat", {
message:
"Выберите настройку, которую хотите изменить (введите номер настройки):"
});
await sleep(100);
client.write("chat", {
message: `1. Задержка движения = ${msToSeconds(moveDelay)} секунд`
});
await sleep(100);
client.write("chat", { message: `2. Ник = ${client.username}` });
await sleep(100);
client.write("chat", {
message: `3. Автоматический перезаход = ${translateBoolean(rejoin)}`
});
await sleep(100);
client.write("chat", {
message: 'Чтобы отменить изменение настроек, пропишите "$Отмена".'
});
awaitingInput = true;
break;
case "отмена":
if (awaitingInput) {
awaitingInput = false;
return client.write("chat", { message: "Отменил выбор настроек." });
}
if (awaitingCustomInput) {
awaitingCustomInput = false;
return client.write("chat", {
message: "Отменил измение настройки."
});
}
client.write("chat", { message: "Нечего отменять." });
break;
}
});
};
bindEvents();