Minecraft Blogs / Tutorial

How to Make a CraftBukkit Server

  • 492 views, 2 today
  • 1
  • 0
  • 1
SlipSerum's Avatar SlipSerum
Level 35 : Artisan Architect
13
HELLO PLANETMINECRAFT!!!
Today, I'm going to teach you all how to make a CraftBukkit server! First, go to tcrp.ca. Download the one of the craftbukkit verisons, I recommend 1.7.2. Make a folder on your desktop called "CraftBukkit Server (Minecraft Verison)". Now, create a new text document. Type in the new text document:

Windows
@ECHO OFF
SET BINDIR=%~dp0
CD /D "%BINDIR%"
"%ProgramFiles(x86)%\Java\jre1.8.0_31\bin\java.exe" -Xincgc -Xmx1G -jar craftbukkit.jar
PAUSE
Mac
#!/bin/bash
cd "$( dirname "$0" )"
java -server -Xnx2G ./craftbukkit.jar

Remember to rename the your craftbukkit file to "craftbukkit.jar"! Now, save the Mac code as "start_server.command"  in the folder with the craftbukkit.jar. If you used Windows, call the file "run.bat". 'bat' stands for batch, by the way. Now, the 'run.bat' or 'start_server.command' will download folders and items. Your server starter will download the fallowing:


-logs
-plugins
-world
-world_nether
-world_the_end
-server.properties
-banned-ips
-banned-players
-ops
-white-list
-bukkit
-commands
-help
-permissions

Permissions is for the plugins you can download, server.properties is to configure your server, and logs is to "log" your data. Get it?

Now, you can install plugins by putting 'plugins' in the 'plugins' folder. You get plugins at Curse, Minecraft Fourms, and BukkitDev. Have fun with all of this!

If you have any issues, comment them and I will help you as soon as possible!

Remember to subscribe, like, and give a diamond!!!


CreditTutorialed by TheRealGVSG, links from Curse, Minecraft Fourms, and BukkitDev
Tags

2 Update Logs

Link Repair : by SlipSerum 03/08/2015 8:49:42 pmMar 8th, 2015

I fixed the link to 'Yive's Mirror"
LOAD MORE LOGS

Create an account or sign in to comment.

1
04/03/2015 8:56 pm
Level 35 : Artisan Architect
SlipSerum
SlipSerum's Avatar
I have some more codes that might work (might be duplicates, FYI). Try them all

java -verison
java -Xmx1G -jar craftbukkit.jar
pause

@ECHO OFF
SET BINDIR=%~dp0
CD /D "%BINDIR%"
"%ProgramFiles(x86)%\Java\jre6\bin\java.exe" -Xincgc -Xmx1G -jar BUKKIT.jar
PAUSE

@ECHO OFF
SET BINDIR=%~dp0
CD /D "%BINDIR%"
"%ProgramFiles%\Java\jre6\bin\java.exe" -Xincgc -Xmx1G -jar BUKKIT.jar
PAUSE

@ECHO OFF
SET BINDIR=%~dp0
CD /D "%BINDIR%"
"%ProgramFiles(x86)%\Java\jre7\bin\java.exe" -Xincgc -Xmx1G -jar craftbukkit-1.7.10.jar
PAUSE

java -Xmx1024M -jar craftbukkit.jar -o true
PAUSE

#!/bin/sh
BINDIR=$(dirname "$(readlink -fn "$0")")
cd "$BINDIR"
java -Xmx1024M -jar craftbukkit.jar -o true

#!/bin/bash
cd "$( dirname "$0" )"
java -Xmx1024M -jar craftbukkit.jar -o true

cd ~/Desktop/
mkdir BukkitServer
cd BukkitServer/
curl -LO http://cbukk.it/craftbukkit.jar
echo "cd ~/Desktop/BukkitServer/" >> start.command
echo " java -Xmx1024M -jar craftbukkit.jar -o true" >> start.command
chmod +x start.command

@echo off
cls
echo Protecting srcds from crashes...
echo If you want to close srcds and this script, close the srcds window and type Y depending on your language followed by Enter.
title srcds.com Watchdog
:srcds
echo (%time%) srcds started.
start /wait srcds.exe -console -game garrysmod +map gm_flatgrass +maxplayers 16
echo (%time%) WARNING: srcds closed or crashed, restarting.
goto srcds


Planet Minecraft

Website

© 2010 - 2024
www.planetminecraft.com

Welcome