Last active
June 23, 2023 09:44
-
-
Save simonmeusel/1de7166288b12c04518c59158a85f5ef to your computer and use it in GitHub Desktop.
Start minecraft server via discord bot
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var spawn = require('child_process').spawn; | |
var discord = require("discord.js"); | |
var bot = new discord.Client(); | |
var mcserver; | |
// The start.bat has to include a 'cd "C:/Users/_____/Desktop/Server/"' command (See start.bat for more details) | |
var MC_SERVER_START_SCRIPT = "C:/Users/_____/Desktop/Server/start.bat"; | |
bot.on("message", function(message){ | |
if (message.content == "start") { | |
// Only start if not running | |
if (mcserver == null) { | |
bot.sendMessage(message, "Starting server..."); | |
// Start the server | |
mcserver = spawn(MC_SERVER_START_SCRIPT); | |
mcserver.stdout.on('data', (data) => { | |
console.log("stdout: " + data); | |
// Not everything is send (because i think there is a send limit per time) | |
// bot.sendMessage(message, "stdout: " + data); | |
}); | |
mcserver.stderr.on('data', (data) => { | |
console.log("stderr: " + data); | |
bot.sendMessage(message, "stdout: " + data); | |
}); | |
mcserver.on('close', (code) => { | |
console.log("child process exited with code " + code); | |
bot.sendMessage(message, "child process exited with code " + code); | |
}); | |
} | |
} else if (message.content == "stop") { | |
// Only stop if running | |
if (message.content == "start") { | |
bot.sendMessage(message, "Stopping server..."); | |
// Stop the server | |
mcserver.kill(); | |
mcserver = null; | |
} | |
} | |
}); | |
bot.login("email", "pass") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd C:\Users\_____\Desktop\Server | |
java -jar spigot.jar |
@Stonley890 or @Whitelisted1 is the code currently up to date because i tried it a few months back and couldn't get it to work
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@TeddySenpai I've reworked the script in this repository: Stonley890/mc-console-bot
Try using this one.