This is a read-only archive of the old Scratch 1.x Forums.
Try searching the current Scratch discussion forums.

#26 2011-08-25 08:33:13

meew0
Scratcher
Registered: 2010-02-22
Posts: 1000+

Re: The official guide on how to make a Minecraft server

Essentials commands:

All the commands listed by SeptimusHeap and more:

/time [day/night]: Sets the time.
/weather [sun/rain]: Sets the weather.
/pt [command]: Assigns the item you're holding with a command, so if you hold a feather and type /pt home, as soon as you left-click with the feather it teleports you to your home.
/home: Teleports you to your home.
/sethome: Sets your home.

[more commands coming soon]


http://i.imgur.com/mJV3j.pnghttp://i.imgur.com/HwWAX.pnghttp://i.imgur.com/sZ7Ui.pnghttp://i.imgur.com/0y6yh.pnghttp://i.imgur.com/nOC4l.png

Offline

 

#27 2011-08-25 08:34:14

meew0
Scratcher
Registered: 2010-02-22
Posts: 1000+

Re: The official guide on how to make a Minecraft server

SpriteMaster wrote:

How do I rename my server?

In the server.properties, there's a field "server-name=". Just change that to e.g. "server-name=MyServer"  smile


http://i.imgur.com/mJV3j.pnghttp://i.imgur.com/HwWAX.pnghttp://i.imgur.com/sZ7Ui.pnghttp://i.imgur.com/0y6yh.pnghttp://i.imgur.com/nOC4l.png

Offline

 

#28 2011-08-25 08:40:49

SeptimusHeap
Scratcher
Registered: 2010-02-01
Posts: 1000+

Re: The official guide on how to make a Minecraft server

I redid the ToC for you, is that OK? It's a bit more organized.

Last edited by SeptimusHeap (2011-08-25 08:53:25)


http://i46.tinypic.com/dw7zft.png

Offline

 

#29 2011-08-25 08:46:55

meew0
Scratcher
Registered: 2010-02-22
Posts: 1000+

Re: The official guide on how to make a Minecraft server


http://i.imgur.com/mJV3j.pnghttp://i.imgur.com/HwWAX.pnghttp://i.imgur.com/sZ7Ui.pnghttp://i.imgur.com/0y6yh.pnghttp://i.imgur.com/nOC4l.png

Offline

 

#30 2011-08-25 08:50:02

gbear605
Scratcher
Registered: 2008-03-06
Posts: 1000+

Re: The official guide on how to make a Minecraft server

How to setup a bukkit server for mac.

Open Terminal (Found in Application/Utilities) and paste:

Code:

cd ~/Desktop
mkdir "Bukkit Server"
cd ~/Desktop/Bukkit\ Server
curl -O http://ci.bukkit.org/job/dev-CraftBukkit/promotion/latest/Recommended/artifact/target/craftbukkit-0.0.1-SNAPSHOT.jar
mv craftbukkit-0.0.1-SNAPSHOT.jar CraftBukkit.jar
echo "cd ~/Desktop/Bukkit\ Server
java -Xincgc -Xmx[RAM]M -jar CraftBukkit.jar" >LaunchServer.command
chmod +x LaunchServer.command
echo "Open LaunchServer.command with TextEdit, and replace [RAM] with:
512 or 1024 or  1536 or 2560 or 3072 or 5120
That is the ram amount the server will have.
512=512MB;  1024=1GB;  1536=1.5GB;  2560=2.5GB;  3072=3GB;  5120=5GB
It is good to update your server at least once per week." >README.txt
open -a TextEdit LaunchServer.command

Textedit should open a document called "LaunchServer.command". Find [RAM] and replace it with:
512 or 1024 or 1536 or 2560 or 3072 or 5120


That is the ram amount the server will have.
512=512MB; 1024=1GB; 1536=1.5GB; 2560=2.5GB; 3072=3GB; 5120=5GB

The server is installed on your Desktop, in "Bukkit Server". To start it double click "LaunchServer.command".

Now you should PortFoward using normal methods, or there is an app called PortMap.  Port Map's instructions (by Kayybee)

How to port forward with PortMap:
1. Download Port Map here.
2. Open the app. Turn it on if it's off.
3. Push the "+" button at the bottom.
4. Name the port whatever you want, choose a port (25565 is recommended, but if you tried making another server you might have to try 25566, 25567, etc.)
5. Add the port to the end of your IP (unless it's 25565) (eg, 74.211.106.91:25567. btw, don't try the server. it was a bad attempt to remember a server that I took down long ago)

Tell your friends.  Wasn't that easy?

Last edited by gbear605 (2011-08-25 09:40:05)


Yeah, I'm mostly inactive.  I check in once in a while though.  If you want to contact me, I have a contact form at my website, http://escratch.org

Offline

 

#31 2011-08-25 08:52:23

SeptimusHeap
Scratcher
Registered: 2010-02-01
Posts: 1000+

Re: The official guide on how to make a Minecraft server

meew, I updated the contents in my above post to be more understandable.


http://i46.tinypic.com/dw7zft.png

Offline

 

#32 2011-08-25 09:21:44

meew0
Scratcher
Registered: 2010-02-22
Posts: 1000+

Re: The official guide on how to make a Minecraft server

SeptimusHeap wrote:

meew, I updated the contents in my above post to be more understandable.

Thanks, but I like the ToC as it is currently.  smile

@gbear: Added!  big_smile

Last edited by meew0 (2011-08-25 09:23:13)


http://i.imgur.com/mJV3j.pnghttp://i.imgur.com/HwWAX.pnghttp://i.imgur.com/sZ7Ui.pnghttp://i.imgur.com/0y6yh.pnghttp://i.imgur.com/nOC4l.png

Offline

 

#33 2011-08-25 09:31:19

SeptimusHeap
Scratcher
Registered: 2010-02-01
Posts: 1000+

Re: The official guide on how to make a Minecraft server

meew0 wrote:

SeptimusHeap wrote:

meew, I updated the contents in my above post to be more understandable.

Thanks, but I like the ToC as it is currently.  smile

@gbear: Added!  big_smile

I'd move the essentials commands by the optional part though.

Should I make a tutorial on installing server modloader?


http://i46.tinypic.com/dw7zft.png

Offline

 

#34 2011-08-25 09:42:42

gbear605
Scratcher
Registered: 2008-03-06
Posts: 1000+

Re: The official guide on how to make a Minecraft server

Maybe you should change the 2. in beta servers to:

Last edited by gbear605 (2011-08-25 09:43:26)


Yeah, I'm mostly inactive.  I check in once in a while though.  If you want to contact me, I have a contact form at my website, http://escratch.org

Offline

 

#35 2011-08-25 09:57:41

SeptimusHeap
Scratcher
Registered: 2010-02-01
Posts: 1000+

Re: The official guide on how to make a Minecraft server

Installing ModloaderMP on your server!

ModloaderMP is located at [url=http://[please don't put commercial ads on Scratch]/22TBU]Client[/url], [url=http://[please don't put commercial ads on Scratch]/2PCFy]Server[/url], Bukkit. It's used for many server mods, and will even work with bukkit!


Vanilla Server
Download a program that will allow you to open .jar files, such as 7-ZIP, my personal favorite, or WinRar/WinZip.
Open up the minecraft_server.jar with the program, and drag and drop the ModLoaderMP files into the .jar
DO NOT delete META-INF
All players on the server must do the following:

Vanilla Client
Download ModLoader, open up your minecrfat.jar and drag and drop the files in.
Delete META-INF.
Drag and drop the ModLoaderMP files into the .jar

Bukkit Server
Open up craftbukkit-0.0.1-SNAPSHOT.jar with 7-ZIP or another program.
Drag and drop the ModLoaderMP Bukkit files into the .jar (Not the .jar itself, just the files in the folder).
Drag and drop any mod files into the .jar
Done!


http://i46.tinypic.com/dw7zft.png

Offline

 

#36 2011-08-25 11:02:46

SeptimusHeap
Scratcher
Registered: 2010-02-01
Posts: 1000+

Re: The official guide on how to make a Minecraft server

bump


http://i46.tinypic.com/dw7zft.png

Offline

 

#37 2011-08-25 14:46:18

SeptimusHeap
Scratcher
Registered: 2010-02-01
Posts: 1000+

Re: The official guide on how to make a Minecraft server

bump


http://i46.tinypic.com/dw7zft.png

Offline

 

#38 2011-08-25 14:48:24

meew0
Scratcher
Registered: 2010-02-22
Posts: 1000+

Re: The official guide on how to make a Minecraft server

Added


http://i.imgur.com/mJV3j.pnghttp://i.imgur.com/HwWAX.pnghttp://i.imgur.com/sZ7Ui.pnghttp://i.imgur.com/0y6yh.pnghttp://i.imgur.com/nOC4l.png

Offline

 

#39 2011-08-25 16:17:32

veggieman001
Scratcher
Registered: 2010-02-20
Posts: 1000+

Re: The official guide on how to make a Minecraft server

Cool! I used the first part to set up my own server.


Posts: 20000 - Show all posts

Offline

 

#40 2011-08-25 20:33:34

SeptimusHeap
Scratcher
Registered: 2010-02-01
Posts: 1000+

Re: The official guide on how to make a Minecraft server

meew, use gbear suggestion to do 3A, 3B, 3C in the ToC for the different options (hamatchi, mac, unix) and put some optional thing by the essentials, modloadermp, and plugins.


http://i46.tinypic.com/dw7zft.png

Offline

 

#41 2011-08-26 00:28:17

meew0
Scratcher
Registered: 2010-02-22
Posts: 1000+

Re: The official guide on how to make a Minecraft server

SeptimusHeap wrote:

meew, use gbear suggestion to do 3A, 3B, 3C in the ToC for the different options (hamatchi, mac, unix) and put some optional thing by the essentials, modloadermp, and plugins.

OK


http://i.imgur.com/mJV3j.pnghttp://i.imgur.com/HwWAX.pnghttp://i.imgur.com/sZ7Ui.pnghttp://i.imgur.com/0y6yh.pnghttp://i.imgur.com/nOC4l.png

Offline

 

#42 2011-08-26 07:11:03

gbear605
Scratcher
Registered: 2008-03-06
Posts: 1000+

Re: The official guide on how to make a Minecraft server

Hey, maybe you should have all the bukkit things in a separate category, and have the beta section be called Beta (Vanilla)


Yeah, I'm mostly inactive.  I check in once in a while though.  If you want to contact me, I have a contact form at my website, http://escratch.org

Offline

 

#43 2011-08-26 11:45:54

meew0
Scratcher
Registered: 2010-02-22
Posts: 1000+

Re: The official guide on how to make a Minecraft server

gbear605 wrote:

Hey, maybe you should have all the bukkit things in a separate category, and have the beta section be called Beta (Vanilla)

Good idea!


http://i.imgur.com/mJV3j.pnghttp://i.imgur.com/HwWAX.pnghttp://i.imgur.com/sZ7Ui.pnghttp://i.imgur.com/0y6yh.pnghttp://i.imgur.com/nOC4l.png

Offline

 

#44 2011-08-26 12:33:27

gbear605
Scratcher
Registered: 2008-03-06
Posts: 1000+

Re: The official guide on how to make a Minecraft server

meew0 wrote:

gbear605 wrote:

Hey, maybe you should have all the bukkit things in a separate category, and have the beta section be called Beta (Vanilla)

Good idea!

Put the 2B of bukkit under vanilla, because it doesn't cover bukkit, it is for vanilla.

2B of bukkit is currently: 

Code:

2b. [url=http://scratch.mit.edu/forums/viewtopic.php?pid=889780#p889780]Beta Server (no Hamachi) (Unix) (by kayybee)[/url]

Last edited by gbear605 (2011-08-26 12:34:31)


Yeah, I'm mostly inactive.  I check in once in a while though.  If you want to contact me, I have a contact form at my website, http://escratch.org

Offline

 

#45 2011-08-26 12:58:46

meew0
Scratcher
Registered: 2010-02-22
Posts: 1000+

Re: The official guide on how to make a Minecraft server

gbear605 wrote:

meew0 wrote:

gbear605 wrote:

Hey, maybe you should have all the bukkit things in a separate category, and have the beta section be called Beta (Vanilla)

Good idea!

Put the 2B of bukkit under vanilla, because it doesn't cover bukkit, it is for vanilla.

2B of bukkit is currently: 

Code:

2b. [url=http://scratch.mit.edu/forums/viewtopic.php?pid=889780#p889780]Beta Server (no Hamachi) (Unix) (by kayybee)[/url]

Oh yeah, thanks for pointing out!  big_smile


http://i.imgur.com/mJV3j.pnghttp://i.imgur.com/HwWAX.pnghttp://i.imgur.com/sZ7Ui.pnghttp://i.imgur.com/0y6yh.pnghttp://i.imgur.com/nOC4l.png

Offline

 

#46 2011-08-27 11:24:11

funnyman1120
Scratcher
Registered: 2008-07-31
Posts: 100+

Re: The official guide on how to make a Minecraft server

Thanks this helps


Check out my website for updates on all your favorite games! Funnyman1120's Website

Offline

 

#47 2011-09-11 17:26:06

gbear605
Scratcher
Registered: 2008-03-06
Posts: 1000+

Re: The official guide on how to make a Minecraft server

Tutorial On Updating Bukkit to the newest recommended version:

NOTE: THIS UPDATES TO THE NEWEST RECOMMENDED BUILD.  BUKKIT ISN'T AUTOMATICALLY UPDATED WITH MINECRAFT, AND NEEDS TO BE UPDATED BY ITS CREATORS, SO IT WON'T BE UPDATED IMMEDITATLY AFTER A MINECRAFT UPDATE.

Delete the old CraftBukkit.jar.  Re-download CraftBukkit from http://ci.bukkit.org/job/dev-CraftBukki … APSHOT.jar and rename it to "CraftBukkit" (without the quotes).  This will be the new version.  If you want a new map, delete the old map.  Now just start the server like you normally would.  Now the server has been updated.  You might need to get a new version of your plugins, as sometimes they stop being compatible.


Yeah, I'm mostly inactive.  I check in once in a while though.  If you want to contact me, I have a contact form at my website, http://escratch.org

Offline

 

#48 2011-09-11 17:29:45

SeptimusHeap
Scratcher
Registered: 2010-02-01
Posts: 1000+

Re: The official guide on how to make a Minecraft server

Beta Server (Windows) (Vanilla)

Download the Minecraft_Server.exe from minecraft.net here: http://www.minecraft.net/download.jsp

Put it into a folder if you want (Recommended)

Double click. Then close it after it loads and edit properties file. (See next step)

Get your external IP and give it to people.
Done!


http://i46.tinypic.com/dw7zft.png

Offline

 

#49 2011-09-12 09:20:36

meew0
Scratcher
Registered: 2010-02-22
Posts: 1000+

Re: The official guide on how to make a Minecraft server

Added you  smile


http://i.imgur.com/mJV3j.pnghttp://i.imgur.com/HwWAX.pnghttp://i.imgur.com/sZ7Ui.pnghttp://i.imgur.com/0y6yh.pnghttp://i.imgur.com/nOC4l.png

Offline

 

#50 2011-10-10 02:36:05

meew0
Scratcher
Registered: 2010-02-22
Posts: 1000+

Re: The official guide on how to make a Minecraft server

Bump. Septimus, can you please update your server.properties thingy to 1.8/1.9?

Last edited by meew0 (2011-10-10 02:36:16)


http://i.imgur.com/mJV3j.pnghttp://i.imgur.com/HwWAX.pnghttp://i.imgur.com/sZ7Ui.pnghttp://i.imgur.com/0y6yh.pnghttp://i.imgur.com/nOC4l.png

Offline

 

Board footer