mirror of
https://github.com/kolbytn/mindcraft.git
synced 2025-08-02 05:15:30 +02:00
11 lines
378 B
JavaScript
11 lines
378 B
JavaScript
![]() |
|
||
|
const bot = mineflayer.createBot({
|
||
|
host: 'localhost', // Replace with your server IP or hostname
|
||
|
port: 55916, // Replace with your server port
|
||
|
username: 'andy', // Replace with your bot's username
|
||
|
// password: 'your_bot_password' // Only if the server has online-mode=true
|
||
|
});
|
||
|
|
||
|
this.bot.on('spawn', async () => {
|
||
|
bot.chat("/setblock ~ ~ ~ stone");
|
||
|
});
|