update
This commit is contained in:
parent
a3c904d867
commit
945b94f812
1 changed files with 28 additions and 28 deletions
56
main/main.js
56
main/main.js
|
@ -1,28 +1,28 @@
|
|||
const mc = require('minecraft-protocol');
|
||||
const inject = require("./emit.js");
|
||||
|
||||
const bot = mc.createClient({
|
||||
//host: 'chipmunk.land',
|
||||
host: 'kaboom.pw',
|
||||
port: 25565,
|
||||
username: 'catparser',
|
||||
version: "1.20.4",
|
||||
});
|
||||
|
||||
inject(bot);
|
||||
|
||||
bot.on('custom_playerChat', (msg) => {
|
||||
console.log(`PlayerChat: ${msg}`);
|
||||
});
|
||||
|
||||
bot.on('custom_systemChat', (msg, nocolormsg, cspy) => { // SystemChat maybe is PlayerChat use sudo or vanish
|
||||
console.log(`SystemChat: ${msg}`);
|
||||
});
|
||||
|
||||
bot.on('custom_commandspy', (cspy) => {
|
||||
console.log(`CSPY: ${cspy.username}: /${cspy.command}`);
|
||||
})
|
||||
|
||||
bot.on('error', (err) => {
|
||||
console.error('Bot Error:', err);
|
||||
});
|
||||
const mc = require('minecraft-protocol');
|
||||
const inject = require("./chatparser.js");
|
||||
|
||||
const bot = mc.createClient({
|
||||
//host: 'chipmunk.land',
|
||||
host: 'kaboom.pw',
|
||||
port: 25565,
|
||||
username: 'catparser', // cat
|
||||
version: "1.20.4",
|
||||
});
|
||||
|
||||
inject(bot); // load
|
||||
|
||||
bot.on('custom_playerChat', (msg, uuid, plainMessage, SenderName, TargetName, formattedMessage, unsignedContent, NoColorSenderName, NoColorTargetName, NoColorformattedMessage, NoColorunsignedContent, nocolorplayermsg, packet.type) => {
|
||||
console.log(`PlayerChat: ${msg}`);
|
||||
});
|
||||
|
||||
bot.on('custom_systemChat', (msg, nocolormsg, jsonmsg) => { // SystemChat maybe is PlayerChat use sudo or vanish
|
||||
console.log(`SystemChat: ${msg}`);
|
||||
});
|
||||
|
||||
bot.on('custom_Commandspy', (cspy) => {
|
||||
console.log(`CSPY: ${cspy.username}: /${cspy.command}`);
|
||||
})
|
||||
|
||||
bot.on('error', (err) => {
|
||||
console.error('Bot Error:', err);
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue