I recently setup my vanilla server to automatically restart when someone uses /stop. It works fine in the terminal, but when an admin tries to use it in game, it says something to the extent of "Insufficient permissions". I set the op-permission-level to 4, but it wont work. I'm wondering if the auto-restart is affecting something.
Here is my start.command:
Here is my start.command:
#!/bin/bash
cd "$(dirname "$0")"
while true
do
java -Xmx1G -Xms1G -jar minecraft_server.jar
sleep 1
done
3
Add the permissions bukkit.command.stop to them...
Unless that person has access to the console or they're OP, they can't do /stop.
You said an admin? There's no way a player in a Vanilla Minecraft server can be an admin unless they're OP.
P.S your start.command doesn't help us
P.S your start.command doesn't help us
