mirror of
https://github.com/ChomeNS/chomens-bot-mc.git
synced 2024-11-14 18:54:55 -05:00
changing run.js took real ages
This commit is contained in:
parent
08a42ddd69
commit
aef414fd3b
5 changed files with 326 additions and 330 deletions
194
bot.js
Normal file
194
bot.js
Normal file
|
@ -0,0 +1,194 @@
|
||||||
|
/* eslint-disable max-len */
|
||||||
|
|
||||||
|
const mc = require('minecraft-protocol');
|
||||||
|
const crypto = require('crypto');
|
||||||
|
const colorConvert = require('color-convert');
|
||||||
|
const sleep = require('sleep-promise');
|
||||||
|
const generateEaglerUsername = require('./util/generateEaglerUsername');
|
||||||
|
const {EventEmitter} = require('events');
|
||||||
|
const {loadPlugins} = require('./util/loadPlugins');
|
||||||
|
const uuid = require('uuid-by-string');
|
||||||
|
const readline = require('node:readline');
|
||||||
|
const {stdin: input, stdout: output} = require('node:process');
|
||||||
|
const rl = readline.createInterface({input, output});
|
||||||
|
const moment = require('moment-timezone');
|
||||||
|
const cowsay = require('cowsay2');
|
||||||
|
const cows = require('cowsay2/cows');
|
||||||
|
const util = require('node:util');
|
||||||
|
const {VM} = require('vm2');
|
||||||
|
const randomstring = require('randomstring');
|
||||||
|
const mineflayer = require('mineflayer');
|
||||||
|
|
||||||
|
/**
|
||||||
|
* makes the bot
|
||||||
|
* @param {Object} server the server object used in the config
|
||||||
|
* @param {Object} config the config file
|
||||||
|
* @param {Array} bots bots array (used in index.js, look in there)
|
||||||
|
* @param {Class} dcclient discord client
|
||||||
|
*/
|
||||||
|
async function createBot(server, config, bots, dcclient) {
|
||||||
|
const bot = new EventEmitter();
|
||||||
|
bot.options = {
|
||||||
|
username: /* process.argv[2] */ server.host === 'mc.chomens41793.ga' ?
|
||||||
|
'ChomeNS_Bot' :
|
||||||
|
randomstring.generate(16),
|
||||||
|
host: /* process.argv[2] */ server.host,
|
||||||
|
port: /* process.argv[3] ? Number(process.argv[3]) : 25565*/ server.port,
|
||||||
|
version: config.version,
|
||||||
|
checkTimeoutInterval: '30000',
|
||||||
|
keepAlive: false,
|
||||||
|
hideErrors: true,
|
||||||
|
};
|
||||||
|
bot._client = mc.createClient(bot.options);
|
||||||
|
bot.version = bot._client.version;
|
||||||
|
bot.write = (name, data) => bot._client.write(name, data);
|
||||||
|
bot.end = (reason = 'end') => {
|
||||||
|
bot.emit('end', reason);
|
||||||
|
bot.removeAllListeners();
|
||||||
|
bot._client.end();
|
||||||
|
bot._client.removeAllListeners();
|
||||||
|
};
|
||||||
|
bot.visibility = false;
|
||||||
|
bot.getplayerusername = {};
|
||||||
|
if (typeof bot.messageLogging === 'undefined') bot.messageLogging = true;
|
||||||
|
|
||||||
|
await sleep(200);
|
||||||
|
|
||||||
|
loadPlugins(bot, dcclient, config, rl);
|
||||||
|
|
||||||
|
bot.getBots = () => bots;
|
||||||
|
bots.push(bot);
|
||||||
|
|
||||||
|
const channel = dcclient.channels.cache.get(config.discord.servers[bot.options.host]);
|
||||||
|
|
||||||
|
bot.playersAddedPlayers = {};
|
||||||
|
bot.getplayerusername = {};
|
||||||
|
|
||||||
|
bot._client.on('login', async function(data) {
|
||||||
|
bot.entityId = data.entityId;
|
||||||
|
bot.uuid = bot._client.uuid;
|
||||||
|
bot.username = bot._client.username;
|
||||||
|
chatMessage = require('prismarine-chat')(bot.version);
|
||||||
|
const mcData = require('minecraft-data')(bot.version);
|
||||||
|
bot.console.info(
|
||||||
|
`Successfully logged in to: ${bot.options.host}:${bot.options.port}`,
|
||||||
|
);
|
||||||
|
channel.send(
|
||||||
|
`Successfully logged in to: \`${bot.options.host}:${bot.options.port}\``,
|
||||||
|
);
|
||||||
|
bot.eaglercrashstarted = false;
|
||||||
|
// await sleep(1500);
|
||||||
|
// bot.createCore();
|
||||||
|
|
||||||
|
bot.vmoptions = {
|
||||||
|
timeout: 2000,
|
||||||
|
sandbox: {
|
||||||
|
run: function(cmd) {
|
||||||
|
bot.core.run(cmd);
|
||||||
|
},
|
||||||
|
mc,
|
||||||
|
mineflayer,
|
||||||
|
chat: bot.chat,
|
||||||
|
moment,
|
||||||
|
randomstring,
|
||||||
|
uuid,
|
||||||
|
chatMessage,
|
||||||
|
crypto,
|
||||||
|
colorConvert,
|
||||||
|
bruhifyText: function(message) {
|
||||||
|
if (
|
||||||
|
typeof message !== 'string'
|
||||||
|
) throw new SyntaxError('message must be a string');
|
||||||
|
bot.bruhifyText = message.substring(0, 1000);
|
||||||
|
},
|
||||||
|
generateEaglerUsername,
|
||||||
|
cowsay,
|
||||||
|
cows,
|
||||||
|
mcData,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
bot.vm = new VM(bot.vmoptions);
|
||||||
|
|
||||||
|
// await sleep(1400);
|
||||||
|
// bot.tellraw('@a', [
|
||||||
|
// {
|
||||||
|
// text: 'ChomeNS Bot',
|
||||||
|
// color: 'yellow',
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// text: ' - ',
|
||||||
|
// color: 'dark_gray',
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// text: 'made by ',
|
||||||
|
// color: 'gray',
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// text: 'chayapak',
|
||||||
|
// color: 'gold',
|
||||||
|
// },
|
||||||
|
// ]);
|
||||||
|
});
|
||||||
|
|
||||||
|
bot.on('player_added', (player) => {
|
||||||
|
bot.playersAddedPlayers[player.name] = player.UUID;
|
||||||
|
bot.getplayerusername[player.UUID] = player.name;
|
||||||
|
});
|
||||||
|
|
||||||
|
bot._client.on('end', function(reason) {
|
||||||
|
bot.emit('end', reason, 'end');
|
||||||
|
});
|
||||||
|
|
||||||
|
bot.once('end', (reason, event) => {
|
||||||
|
bot.console.info(
|
||||||
|
`Disconnected from ${bot.options.host} (${event} event): ${util.inspect(reason)}`,
|
||||||
|
);
|
||||||
|
channel.send(`Disconnected: \`${util.inspect(reason)}\``);
|
||||||
|
|
||||||
|
let timeout = config.reconnectTimeout;
|
||||||
|
|
||||||
|
try {
|
||||||
|
if (reason.text) {
|
||||||
|
if (reason.text ===
|
||||||
|
'Wait 5 seconds before connecting, thanks! :)' ||
|
||||||
|
reason.text ===
|
||||||
|
'You are logging in too fast, try again later.'
|
||||||
|
) timeout = 1000 * 7;
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
bot.console.error(e);
|
||||||
|
}
|
||||||
|
|
||||||
|
setTimeout(() => {
|
||||||
|
bot.end();
|
||||||
|
createBot(server, config, bots, dcclient);
|
||||||
|
}, timeout);
|
||||||
|
});
|
||||||
|
|
||||||
|
bot._client.on('keep_alive', (packet) => {
|
||||||
|
bot.write('keep_alive', {keepAliveId: packet.keepAliveId});
|
||||||
|
});
|
||||||
|
bot._client.on('game_state_change', () => {
|
||||||
|
bot.write('client_command', {payload: 0});
|
||||||
|
});
|
||||||
|
|
||||||
|
bot._client.on('kick_disconnect', function(data) {
|
||||||
|
const parsed = JSON.parse(data.reason);
|
||||||
|
bot.emit('end', parsed, 'kick_disconnect');
|
||||||
|
});
|
||||||
|
|
||||||
|
bot._client.on('disconnect', function(data) {
|
||||||
|
const parsed = JSON.parse(data.reason);
|
||||||
|
bot.emit('end', parsed, 'disconnect');
|
||||||
|
});
|
||||||
|
|
||||||
|
bot._client.on('error', function() {});
|
||||||
|
|
||||||
|
process.on('uncaughtException', (error) => {
|
||||||
|
console.error('uncaught ' + util.inspect(error));
|
||||||
|
// channel.send('uncaught ```\n' + util.inspect(error) + '\n```');
|
||||||
|
// bot.emit('end', 'uncaughtException', 'process: uncaughtException');
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
module.exports = {createBot};
|
218
index.js
218
index.js
|
@ -3,25 +3,16 @@
|
||||||
/* eslint-disable prefer-rest-params */
|
/* eslint-disable prefer-rest-params */
|
||||||
/* eslint-disable no-tabs */
|
/* eslint-disable no-tabs */
|
||||||
/* eslint-disable no-undef */
|
/* eslint-disable no-undef */
|
||||||
const mc = require('minecraft-protocol');
|
|
||||||
const config = require('./config');
|
const config = require('./config');
|
||||||
const crypto = require('crypto');
|
const {createBot} = require('./bot');
|
||||||
const colorConvert = require('color-convert');
|
const {
|
||||||
const sleep = require('sleep-promise');
|
Client,
|
||||||
const generateEaglerUsername = require('./util/generateEaglerUsername');
|
Intents,
|
||||||
const {EventEmitter} = require('events');
|
} = require('discord.js');
|
||||||
const {loadPlugins} = require('./util/loadPlugins');
|
const intents = new Intents(['GUILDS', 'GUILD_MESSAGES']);
|
||||||
const uuid = require('uuid-by-string');
|
const dcclient = new Client({
|
||||||
const readline = require('node:readline');
|
intents,
|
||||||
const {stdin: input, stdout: output} = require('node:process');
|
});
|
||||||
const rl = readline.createInterface({input, output});
|
|
||||||
const moment = require('moment-timezone');
|
|
||||||
const cowsay = require('cowsay2');
|
|
||||||
const cows = require('cowsay2/cows');
|
|
||||||
const util = require('node:util');
|
|
||||||
const {VM} = require('vm2');
|
|
||||||
const randomstring = require('randomstring');
|
|
||||||
const mineflayer = require('mineflayer');
|
|
||||||
// readline > fix on console.log
|
// readline > fix on console.log
|
||||||
// const log = console.log;
|
// const log = console.log;
|
||||||
// console.log = function() {
|
// console.log = function() {
|
||||||
|
@ -30,195 +21,12 @@ const mineflayer = require('mineflayer');
|
||||||
// rl._refreshLine();
|
// rl._refreshLine();
|
||||||
// };
|
// };
|
||||||
|
|
||||||
// Load discord.js
|
const bots = [];
|
||||||
const {
|
|
||||||
Client,
|
|
||||||
Intents,
|
|
||||||
} = require('discord.js');
|
|
||||||
// Create Discord intentions, required in v13
|
|
||||||
const intents = new Intents(['GUILDS', 'GUILD_MESSAGES']);
|
|
||||||
// Create Discord client
|
|
||||||
const dcclient = new Client({
|
|
||||||
intents,
|
|
||||||
});
|
|
||||||
|
|
||||||
async function botThings() {
|
dcclient.on('ready', () => {
|
||||||
bot = new EventEmitter();
|
config.servers.forEach(async (server) => {
|
||||||
bot.options = {
|
createBot(server, config, bots, dcclient);
|
||||||
username: process.argv[2] === 'mc.chomens41793.ga' ?
|
|
||||||
'ChomeNS_Bot' :
|
|
||||||
randomstring.generate(16),
|
|
||||||
host: process.argv[2],
|
|
||||||
port: process.argv[3] ? Number(process.argv[3]) : 25565,
|
|
||||||
version: config.version,
|
|
||||||
checkTimeoutInterval: '30000',
|
|
||||||
keepAlive: false,
|
|
||||||
hideErrors: true,
|
|
||||||
};
|
|
||||||
bot._client = mc.createClient(bot.options);
|
|
||||||
bot.version = bot._client.version;
|
|
||||||
bot.write = (name, data) => bot._client.write(name, data);
|
|
||||||
bot.end = (reason = 'end') => {
|
|
||||||
bot.emit('end', reason);
|
|
||||||
bot.removeAllListeners();
|
|
||||||
bot._client.end();
|
|
||||||
bot._client.removeAllListeners();
|
|
||||||
};
|
|
||||||
bot.visibility = false;
|
|
||||||
bot.getplayerusername = {};
|
|
||||||
if (typeof bot.messageLogging === 'undefined') bot.messageLogging = true;
|
|
||||||
|
|
||||||
await sleep(500);
|
|
||||||
|
|
||||||
loadPlugins(bot, dcclient, config, rl);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Main bot function
|
|
||||||
*/
|
|
||||||
async function main() {
|
|
||||||
const channel = dcclient.channels.cache.get(config.discord.servers[process.argv[2]]);
|
|
||||||
|
|
||||||
module.exports = bot;
|
|
||||||
|
|
||||||
bot.playersAddedPlayers = {};
|
|
||||||
bot.getplayerusername = {};
|
|
||||||
|
|
||||||
bot.once('end', (reason, event) => {
|
|
||||||
bot.console.info(
|
|
||||||
`Disconnected from ${bot.options.host} (${event} event): ${util.inspect(reason)}`,
|
|
||||||
);
|
|
||||||
channel.send(`Disconnected: \`${util.inspect(reason)}\``);
|
|
||||||
|
|
||||||
let timeout = config.reconnectTimeout;
|
|
||||||
|
|
||||||
try {
|
|
||||||
if (reason.text) {
|
|
||||||
if (reason.text ===
|
|
||||||
'Wait 5 seconds before connecting, thanks! :)' ||
|
|
||||||
reason.text ===
|
|
||||||
'You are logging in too fast, try again later.'
|
|
||||||
) timeout = 1000 * 7;
|
|
||||||
}
|
|
||||||
} catch (e) {
|
|
||||||
bot.console.error(e);
|
|
||||||
}
|
|
||||||
|
|
||||||
setTimeout(() => {
|
|
||||||
bot.end();
|
|
||||||
botThings();
|
|
||||||
main();
|
|
||||||
}, timeout);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
await sleep(1000);
|
|
||||||
|
|
||||||
bot.console.info(`Connecting to: ${bot.options.host}:${bot.options.port}...`);
|
|
||||||
channel.send(`Connecting to: \`${bot.options.host}:${bot.options.port}\`...`);
|
|
||||||
bot._client.on('login', async function(data) {
|
|
||||||
bot.entityId = data.entityId;
|
|
||||||
bot.uuid = bot._client.uuid;
|
|
||||||
bot.username = bot._client.username;
|
|
||||||
chatMessage = require('prismarine-chat')(bot.version);
|
|
||||||
const mcData = require('minecraft-data')(bot.version);
|
|
||||||
bot.console.info(
|
|
||||||
`Successfully logged in to: ${bot.options.host}:${bot.options.port}`,
|
|
||||||
);
|
|
||||||
channel.send(
|
|
||||||
`Successfully logged in to: \`${bot.options.host}:${bot.options.port}\``,
|
|
||||||
);
|
|
||||||
bot.eaglercrashstarted = false;
|
|
||||||
await sleep(1500);
|
|
||||||
bot.createCore();
|
|
||||||
|
|
||||||
bot.vmoptions = {
|
|
||||||
timeout: 2000,
|
|
||||||
sandbox: {
|
|
||||||
run: function(cmd) {
|
|
||||||
bot.core.run(cmd);
|
|
||||||
},
|
|
||||||
mc,
|
|
||||||
mineflayer,
|
|
||||||
chat: bot.chat,
|
|
||||||
moment,
|
|
||||||
randomstring,
|
|
||||||
uuid,
|
|
||||||
chatMessage,
|
|
||||||
crypto,
|
|
||||||
colorConvert,
|
|
||||||
bruhifyText: function(message) {
|
|
||||||
if (
|
|
||||||
typeof message !== 'string'
|
|
||||||
) throw new SyntaxError('message must be a string');
|
|
||||||
bot.bruhifyText = message.substring(0, 1000);
|
|
||||||
},
|
|
||||||
generateEaglerUsername,
|
|
||||||
cowsay,
|
|
||||||
cows,
|
|
||||||
mcData,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
bot.vm = new VM(bot.vmoptions);
|
|
||||||
|
|
||||||
await sleep(1400);
|
|
||||||
bot.tellraw('@a', [
|
|
||||||
{
|
|
||||||
text: 'ChomeNS Bot',
|
|
||||||
color: 'yellow',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
text: ' - ',
|
|
||||||
color: 'dark_gray',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
text: 'made by ',
|
|
||||||
color: 'gray',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
text: 'chayapak',
|
|
||||||
color: 'gold',
|
|
||||||
},
|
|
||||||
]);
|
|
||||||
});
|
|
||||||
|
|
||||||
bot.on('player_added', (player) => {
|
|
||||||
bot.playersAddedPlayers[player.name] = player.UUID;
|
|
||||||
bot.getplayerusername[player.UUID] = player.name;
|
|
||||||
});
|
|
||||||
|
|
||||||
bot._client.on('end', function(reason) {
|
|
||||||
bot.emit('end', reason, 'end');
|
|
||||||
});
|
|
||||||
|
|
||||||
bot._client.on('keep_alive', (packet) => {
|
|
||||||
bot.write('keep_alive', {keepAliveId: packet.keepAliveId});
|
|
||||||
});
|
|
||||||
bot._client.on('game_state_change', () => {
|
|
||||||
bot.write('client_command', {payload: 0});
|
|
||||||
});
|
|
||||||
|
|
||||||
bot._client.on('kick_disconnect', function(data) {
|
|
||||||
const parsed = JSON.parse(data.reason);
|
|
||||||
bot.emit('end', parsed, 'kick_disconnect');
|
|
||||||
});
|
|
||||||
|
|
||||||
bot._client.on('disconnect', function(data) {
|
|
||||||
const parsed = JSON.parse(data.reason);
|
|
||||||
bot.emit('end', parsed, 'disconnect');
|
|
||||||
});
|
|
||||||
|
|
||||||
bot._client.on('error', function() {});
|
|
||||||
|
|
||||||
process.on('uncaughtException', (error) => {
|
|
||||||
console.error('uncaught ' + util.inspect(error));
|
|
||||||
channel.send('uncaught ```\n' + util.inspect(error) + '\n```');
|
|
||||||
bot.emit('end', 'uncaughtException', 'process: uncaughtException');
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
dcclient.on('ready', async () => {
|
|
||||||
botThings();
|
|
||||||
main();
|
|
||||||
});
|
});
|
||||||
|
|
||||||
dcclient.login(config.discord.token);
|
dcclient.login(config.discord.token);
|
||||||
|
|
|
@ -15,14 +15,15 @@ function inject(bot, dcclient, config, rl) {
|
||||||
}
|
}
|
||||||
|
|
||||||
bot.console = {};
|
bot.console = {};
|
||||||
|
bot.console.host = 'all';
|
||||||
bot.console.log = function(message) {
|
bot.console.log = function(message) {
|
||||||
console.log(prefix('&6LOG', message));
|
console.log(prefix('&6LOG', message));
|
||||||
};
|
};
|
||||||
bot.console.info = function(message) {
|
bot.console.info = function(message) {
|
||||||
console.log(prefix('&aINFO', message));
|
console.log(prefix('&aINFO', message));
|
||||||
};
|
};
|
||||||
bot.console.error = function(message) {
|
bot.console.error = function(error) {
|
||||||
console.log(prefix('&cERROR', message));
|
console.log(prefix('&cERROR', typeof error === 'string' ? error : error.stack));
|
||||||
};
|
};
|
||||||
|
|
||||||
bot.consoleQueue = [];
|
bot.consoleQueue = [];
|
||||||
|
@ -55,6 +56,8 @@ function inject(bot, dcclient, config, rl) {
|
||||||
try {
|
try {
|
||||||
if (line.toLowerCase() === '' ||
|
if (line.toLowerCase() === '' ||
|
||||||
line.toLowerCase().startsWith(' ')) return;
|
line.toLowerCase().startsWith(' ')) return;
|
||||||
|
|
||||||
|
if (bot.options.host !== bot.console.host && bot.console.host !== 'all') return;
|
||||||
if (line.toLowerCase() === '.exit' || line.toLowerCase() === '.end') {
|
if (line.toLowerCase() === '.exit' || line.toLowerCase() === '.end') {
|
||||||
bot.emit('end', 'end command');
|
bot.emit('end', 'end command');
|
||||||
return;
|
return;
|
||||||
|
@ -86,6 +89,13 @@ function inject(bot, dcclient, config, rl) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (line === '.kill') process.exit();
|
if (line === '.kill') process.exit();
|
||||||
|
if (line.startsWith('.csvr ')) {
|
||||||
|
const host = line.substring(6);
|
||||||
|
bot.console.host = host;
|
||||||
|
bot.console.info(`Host set to: ${host}`);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (line.startsWith('.')) {
|
if (line.startsWith('.')) {
|
||||||
return bot.command_handler.run(
|
return bot.command_handler.run(
|
||||||
bot.username,
|
bot.username,
|
||||||
|
|
|
@ -9,7 +9,6 @@ const Vec3 = require('vec3');
|
||||||
const relativePosition = new Vec3(0, 0, 0);
|
const relativePosition = new Vec3(0, 0, 0);
|
||||||
|
|
||||||
function inject(bot, dcclient, config) {
|
function inject(bot, dcclient, config) {
|
||||||
bot.createCore = (layers = config.core.layers) => {
|
|
||||||
const core = {
|
const core = {
|
||||||
isCore(position) {
|
isCore(position) {
|
||||||
return position.x >= core.start.x && position.x <= core.end.x && position.y >= core.start.y && position.y <= core.end.y && position.z >= core.start.z && position.z <= core.end.z;
|
return position.x >= core.start.x && position.x <= core.end.x && position.y >= core.start.y && position.y <= core.end.y && position.z >= core.start.z && position.z <= core.end.z;
|
||||||
|
@ -32,7 +31,7 @@ function inject(bot, dcclient, config) {
|
||||||
relativePosition.y++;
|
relativePosition.y++;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (relativePosition.y >= layers) {
|
if (relativePosition.y >= config.core.layers) {
|
||||||
relativePosition.y = 0;
|
relativePosition.y = 0;
|
||||||
relativePosition.z++;
|
relativePosition.z++;
|
||||||
}
|
}
|
||||||
|
@ -52,7 +51,7 @@ function inject(bot, dcclient, config) {
|
||||||
if (impulseMode) bot.write('update_command_block', {location, command: command.substring(0, 32767), mode: 0, flags: 0});
|
if (impulseMode) bot.write('update_command_block', {location, command: command.substring(0, 32767), mode: 0, flags: 0});
|
||||||
bot.write('update_command_block', {location, command: command.substring(0, 32767), mode: impulseMode ? 2 : 1, flags: 0b100});
|
bot.write('update_command_block', {location, command: command.substring(0, 32767), mode: impulseMode ? 2 : 1, flags: 0b100});
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
return;
|
bot.console.error(e);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
async loopPlace() {
|
async loopPlace() {
|
||||||
|
@ -88,9 +87,9 @@ function inject(bot, dcclient, config) {
|
||||||
cursorZ: 0.5,
|
cursorZ: 0.5,
|
||||||
insideBlock: false,
|
insideBlock: false,
|
||||||
});
|
});
|
||||||
|
} catch (e) {
|
||||||
fillCore();
|
bot.console.error(e);
|
||||||
} catch (e) {}
|
}
|
||||||
},
|
},
|
||||||
// fillCore(useCore) {
|
// fillCore(useCore) {
|
||||||
// const fillCommand = `/minecraft:fill ${core.start.x} ${core.start.y} ${core.start.z} ${core.end.x} ${core.end.y} ${core.end.z} command_block{CustomName:'{"text":"ChomeNS Bot Core","color":"yellow"}'}`;
|
// const fillCommand = `/minecraft:fill ${core.start.x} ${core.start.y} ${core.start.z} ${core.end.x} ${core.end.y} ${core.end.z} command_block{CustomName:'{"text":"ChomeNS Bot Core","color":"yellow"}'}`;
|
||||||
|
@ -103,12 +102,6 @@ function inject(bot, dcclient, config) {
|
||||||
// },
|
// },
|
||||||
};
|
};
|
||||||
|
|
||||||
bot._client.on('position', (position) => {
|
|
||||||
bot.position = position;
|
|
||||||
|
|
||||||
bot.emit('position', position);
|
|
||||||
});
|
|
||||||
|
|
||||||
// bot._client.on('block_change', (packet) => {
|
// bot._client.on('block_change', (packet) => {
|
||||||
// if (core.isCore(packet.location) && packet.type === 0) fillCore();
|
// if (core.isCore(packet.location) && packet.type === 0) fillCore();
|
||||||
// });
|
// });
|
||||||
|
@ -121,8 +114,6 @@ function inject(bot, dcclient, config) {
|
||||||
clearInterval(interval);
|
clearInterval(interval);
|
||||||
});
|
});
|
||||||
|
|
||||||
fillCore();
|
|
||||||
|
|
||||||
bot.core = core;
|
bot.core = core;
|
||||||
|
|
||||||
function fillCore() {
|
function fillCore() {
|
||||||
|
@ -131,21 +122,17 @@ function inject(bot, dcclient, config) {
|
||||||
0 /* bot.position.y */,
|
0 /* bot.position.y */,
|
||||||
Math.floor(bot.position.z / 16) * 16,
|
Math.floor(bot.position.z / 16) * 16,
|
||||||
).floor();
|
).floor();
|
||||||
core.end = core.start.clone().translate(16, layers, 16).subtract(new Vec3(1, 1, 1));
|
core.end = core.start.clone().translate(16, config.core.layers, 16).subtract(new Vec3(1, 1, 1));
|
||||||
|
|
||||||
|
bot.core.loopPlace();
|
||||||
// core.fillCore();
|
// core.fillCore();
|
||||||
}
|
}
|
||||||
|
|
||||||
bot.core.loopPlace();
|
bot.on('position', fillCore);
|
||||||
|
|
||||||
bot.on('position', bot.core.loopPlace);
|
|
||||||
|
|
||||||
const interval = setInterval(() => {
|
const interval = setInterval(() => {
|
||||||
bot.core.loopPlace();
|
bot.core.loopPlace();
|
||||||
}, config.core.refillInterval);
|
}, config.core.refillInterval);
|
||||||
|
|
||||||
return core;
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = {inject};
|
module.exports = {inject};
|
||||||
|
|
|
@ -1,12 +1,9 @@
|
||||||
/* eslint-disable require-jsdoc */
|
/* eslint-disable require-jsdoc */
|
||||||
const Vec3 = require('vec3');
|
|
||||||
|
|
||||||
function inject(bot) {
|
function inject(bot) {
|
||||||
bot.position = new Vec3(null, null, null);
|
|
||||||
|
|
||||||
bot._client.on('position', (position) => {
|
bot._client.on('position', (position) => {
|
||||||
bot.position = new Vec3(position.x, position.y, position.z);
|
bot.position = position;
|
||||||
bot.write('teleport_confirm', {teleportId: position.teleportId});
|
bot.write('teleport_confirm', {teleportId: position.teleportId});
|
||||||
|
bot.emit('position', position);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue