-
Notifications
You must be signed in to change notification settings - Fork 4
/
mybot.js
222 lines (195 loc) · 7.31 KB
/
mybot.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
const mineflayer = require("mineflayer")
const mineflayerViewer = require('prismarine-viewer').mineflayer
const {autototem} = require("mineflayer-auto-totem");
const {BossBar} = require("mineflayer");
const options = require("options");
const pathfinder = require('mineflayer-pathfinder').pathfinder
// Подключение бота к серверу
const bot = mineflayer.createBot({
host: "localhost",
port: "3789",
version: "1.18.2",
username: "MyBot" });
//---------------------------------------------------------------------
// Вывод сообщения в чат при входе на сервер
bot.once('spawn', function () {
bot.chat('Привет мир!');
});
//---------------------------------------------------------------------
// Чат
bot.on('chat', function Hi (username,message) {
if(username === "MyBot") return;
if (message === "Ты бот?" && username === "Sergey") {
setTimeout(() => bot.chat(username + " , нет я не бот"), 5000);
} else {
if(message !== "Ты бот?") return;
setTimeout(() => bot.chat(username + " , я тебя не знаю"), 5000);
}
});
//---------------------------------------------------------------------
// Смотрим за сервером через браузер
bot.once('spawn',() =>{
mineflayerViewer(bot,{
port:3007,
firstPerson:true,
viewDistance: "25"})
})
//---------------------------------------------------------------------
// Укладываем бота спать
bot.on('chat',(username,message)=>{
if(username === bot.username) return
switch (message){
case 'Спать':
goToSleep()
break
case 'Вставай':
wakeUp()
break
case 'Выйди':
bot.quit()
break
}
});
bot.on('sleep',()=>{
bot.chat('Спокойной ночи')
});
bot.on('wake',()=>{
bot.chat('Доброе утро')
});
async function goToSleep() {
const bed = bot.findBlock({
matching: block => bot.isABed(block)
})
if (bed) {
try {
await bot.sleep(bed)
bot.chat("Я сплю")
} catch (err) {
bot.chat(`Я не могу уснуть: ${err.message}`)
}
} else {
bot.chat('Поблизости нет кровати')
}
}
async function wakeUp() {
try {
await bot.wake()
} catch (err) {
bot.chat(`Я не могу проснуться: ${err.message}`)
}
}
//---------------------------------------------------------------------
//По команде скидывает предметы из инвентаря
bot.on('chat',function (username,message){
if(username === "MyBot") return;
if (message === "Drop" && username === "Sergey"){
function tossNext(){
if(bot.inventory.items().length === 0) {
console.log("У меня пусто")
} else {
const item = bot.inventory.items()[0]
bot.tossStack(item,tossNext)
}
}
tossNext()
}
});
//---------------------------------------------------------------------
// Авто-кликер
bot.on('spawn', function (){
bot.loadPlugin(require("mineflayer-autoclicker"))
// bot.autoclicker.start() Автоматический запуск авто-кликера, когда бот заходит на сервер (необязательно)
})
bot.on('chat', function (usrername, message){
if(message === "Start") {
bot.autoclicker.start()
}
if(message === "Stop") {
bot.autoclicker.stop()
}
});
//---------------------------------------------------------------------
// Взаимодействие с коровами
// bot.on('spawn', async function() {
// await startMilking()
// async function startMilking() {
// setTimeout(async function() {
//
// let nearbyCows = Object.values(bot.entities).filter(e => e.name == 'cow' && e.position.distanceTo(bot.entity.position) < 5
// && !e.metadata[16]);
//
// let cow = nearbyCows[Math.floor(Math.random() * nearbyCows.length)];
//
// await bot.lookAt(cow.position, false)
//
// let empty_bucket = bot.inventory.items().filter(item => item.name == 'bucket')[0];
//
// /* if(!empty_bucket) {
// console.log('[Предупреждение] В моем инвентаре нет пустого ведра');
// return startMilking(); */ // По желанию вывод в консоль
//
// await startMilking();
// }, 2000)
// }
// });
//---------------------------------------------------------------------
// Считаем значения Здоровья и Еды
bot.on('chat', function (username,message){
if(message === "Здоровье"){
bot.chat('У меня ' + bot.health.toFixed(0) + ' здоровье')
}
if(message === "Еда"){
bot.chat(`У меня ` + bot.food + ` еды`)
}
if(message === "Опыт"){
bot.chat("У меня " + bot.experience.points.toFixed(0) + " опыта" )
}
if(message === "Уровень"){
bot.chat('У меня ' + bot.experience.level.toFixed(0) + ' уровень')
}
});
//------------------------------------------------
//Автоматическая экипировка тотемов
bot.loadPlugin(autototem)
bot.on("physicsTick", async() =>{
bot.autototem.equip()
})
//------------------------------------------------
//Поиск пути в игроку
// let coming = false
// bot.loadPlugin(pathfinder)
//
// bot.once('spawn', () => {
// const mcData = require('minecraft-data')(bot.version)
// const defaultMove = new Movements(bot, mcData)
// bot.pathfinder.setMovements(defaultMove)
//
// bot.on('chat', (username, message) => {
// const args = message.split(' ')
// switch (args[0]) {
// case 'come':
// coming = true
// const target = bot.players[username]?.entity
// if (!target) {
// bot.chat(username + " я тебя не вижу")
// return
// }
// const {x: playerX, y: playerY, z: playerZ} = target.position
// bot.pathfinder.setGoal(new GoalNear(playerX, playerY, playerZ, 1))
// return
// }
// });
// });
// bot.on('goal_reached', () => {
// if (!coming) part()
// if (coming) coming = false
// });
//Автоматическая экипировка брони
const armorManager = require('mineflayer-armor-manager')
bot.loadPlugin(armorManager)
// Web-радар
const radarPlugin = require('mineflayer-radar')(mineflayer);
radarPlugin(bot, options);
//web-инвентарь
const inventoryViewer = require('mineflayer-web-inventory')
inventoryViewer(bot)