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

#8851 2012-09-10 12:02:37

bonechill
Scratcher
Registered: 2012-05-02
Posts: 500+

Re: Minecraft Official Topic

bonechill wrote:

bonechill wrote:

Can someone tell me how to get craftbukkit into a server?

please

I need to know now!


http://www.planetminecraft.com/files/sigs/scratch9p_693826_sig.jpg

Offline

 

#8852 2012-09-10 13:54:33

CN12
Scratcher
Registered: 2012-07-15
Posts: 1000+

Re: Minecraft Official Topic

I just got a texture pack. It's called "Cartoonism".


Click this on April 15th to see the new album from The 10th Dimension!
http://oi48.tinypic.com/23tqhyw.jpg

Offline

 

#8853 2012-09-10 14:26:08

Nexstudent
Scratcher
Registered: 2010-02-07
Posts: 1000+

Re: Minecraft Official Topic

bonechill wrote:

bonechill wrote:

bonechill wrote:

Can someone tell me how to get craftbukkit into a server?

please

I need to know now!

You know, scratch is not the only source of information.


http://img696.imageshack.us/img696/9325/vedder.jpg

Offline

 

#8854 2012-09-10 15:15:12

sonicfan12p
Scratcher
Registered: 2011-11-16
Posts: 1000+

Re: Minecraft Official Topic

It's one of very few he can access, parental controls prevent him from the rest.


Why are the secret organizations getting all the attention?  mad

Offline

 

#8855 2012-09-10 22:25:21

shpeters
Scratcher
Registered: 2011-12-11
Posts: 100+

Re: Minecraft Official Topic

kimmy123 wrote:

I drew Herobrine holding a baby creeper. :]
http://i.imgur.com/gXzHl.png

It's so cute.


http://i.imgur.com/bboYO.pnghttp://i.imgur.com/66Yki.gifhttp://i.imgur.com/uLUsl.jpg

Offline

 

#8856 2012-09-11 10:27:56

bonechill
Scratcher
Registered: 2012-05-02
Posts: 500+

Re: Minecraft Official Topic

bonechill wrote:

bonechill wrote:

bonechill wrote:

Can someone tell me how to get craftbukkit into a server?

please

I need to know now!

come on


http://www.planetminecraft.com/files/sigs/scratch9p_693826_sig.jpg

Offline

 

#8857 2012-09-11 10:32:45

christian2000
Scratcher
Registered: 2010-11-01
Posts: 100+

Re: Minecraft Official Topic

sonicfan12p wrote:

It's one of very few he can access, parental controls prevent him from the rest.

Parental controls once blocked me from pbs kids  tongue


blerp......
http://obscureinternet.com/wp-content/uploads/Fail-at-Life-Funny-Cards.png

Offline

 

#8858 2012-09-11 10:48:45

mythbusteranimator
Scratcher
Registered: 2012-02-28
Posts: 1000+

Re: Minecraft Official Topic

christian2000 wrote:

sonicfan12p wrote:

It's one of very few he can access, parental controls prevent him from the rest.

Parental controls once blocked me from pbs kids  tongue

O_O

lol


http://www.foxtrot.com/comics/2012-04-01-fdb37077.gif
clicky

Offline

 

#8859 2012-09-11 12:07:47

jukyter
Scratcher
Registered: 2009-12-06
Posts: 1000+

Re: Minecraft Official Topic

bonechill wrote:

bonechill wrote:

bonechill wrote:


please

I need to know now!

come on

Preliminary notes

Note: In this guide we refer to the server file as craftbukkit.jar but the file you download may be named differently. The file name used in your start script must match the name of the file you download. (currently craftbukkit-1.3.1-R2.0.jar)
Note: Unless you have a multi-homed machine and know what this means/requires, server-ip= in server.properties MUST remain unchanged from default and be blank.
Note: When running a server for the first time, errors will show up. Do not worry as this is normal; the server is generating files and folders needed to run as they do not exist yet.
Note: The Bukkit server is intended as a complete replacement for the official Minecraft Server downloaded from Minecraft.net and is not normally ran at the same time on a single computer. It is possible however, to copy your 'World' data files previously created within a Minecraft Server into your Bukkit folders to continue use of your previous game. As always, backup your data and configuration prior to migrating to Bukkit.
Windows

Download CraftBukkit's latest recommended build: CraftBukkit - Recommended Build
Put the .jar file in the directory you'd like the server to run from
Open notepad and type:
java -Xmx1024M -Xms1024M -jar craftbukkit.jar
PAUSE
4. Save the document as RUN.bat (not as a .txt) in the same directory as craftbukkit.jar.
5. Double click RUN.bat and you're away!
6. To shut down, issue the "stop" command in console.
If you see "'Java' is not recognized as an internal or external command, operable program or batch file." then you need to reinstall Java. Still get this error? Follow this guide to adding Java to your system path.
Linux

See also: Setting up a remote Linux server
Download CraftBukkit's latest build: CraftBukkit - Recommended Build
Put the .jar in a folder, for this example we'll use a generic one: ~/craftbukkit
Move to the above directory in terminal with 'cd ~/craftbukkit'
Create a new text document in the minecraft folder and name it craftbukkit.sh
Edit the document and paste this into it:
#!/bin/sh
BINDIR=$(dirname "$(readlink -fn "$0")")
cd "$BINDIR"
java -Xmx1024M -Xms1024M -jar craftbukkit.jar
      6. Make the file executable, either by running "chmod +x ~/craftbukkit/craftbukkit.sh" in a terminal, or by changing the permissions in the file's properties.
7. Then, in terminal, type '~/craftbukkit/craftbukkit.sh' to run to start the server.
8. When you're done playing around, issue the "stop" command in console.
If you plan to run the server more permanently an init script like this one (recommended) [1]
If you want to run your server with screen, you can use a script like this one (recommended) ABM
For CentOS Users - A little more detailed page for CentOS.
Mac OS X

Install Java
Since OS X 10.7 Java does not come packaged with OS X. You will need to install java from the Apple's website http://support.apple.com/kb/DL1421
Obtaining the Server Files
To run a server you will need the server jars, i.e. the server files. We will need a place to put the files.
Create a New Folder
Open up finder, and create a new folder in your Home folder named CraftBukkit
Download the File
Download the server files. You can download the latest builds from the front page of the wiki.
Note: Download the stable build if you are not chasing the cutting edge in the development build
Move the File
Move the file from the Downloads folder to the CraftBukkit folder you created.
Obtaining startup script
To easily start the server you will need a startup script. The following is a basic server script to start your server.
Open up TextEdit set it to plan text mode under format and paste the following in
#!/bin/bash
cd "$( dirname "$0" )"
java -Xmx1024M -Xms1024M -jar craftbukkit.jar
Save the file
Save it in your CraftBukkit folder as start_server.command
Allow the script to run
Open up Terminal.app
Type into Terminal.app
chmod a+x
Warning:    Do not hit return
drag the start_server.command into Terminal.app
hit return
Starting the server
From this point on you can start the server by double-clicking start_server.command.
You will need to run the server once for it to generate some configuration files.
Warning:    To stop the server, do not close the terminal/command prompt window. Instead, type 'stop' into the console. Closing the terminal window without stopping the server could lead to corruption of the save files.

ALTERNATE METHOD [Only for Advanced Users]:
Open Terminal (Found in Application/Utilities) and paste:
cd ~/Desktop/
mkdir BukkitServer
cd BukkitServer/
curl -O http://cbukk.it/craftbukkit.jar
echo "cd ~/Desktop/BukkitServer/" >> start.command
echo "java -Xms[RAM]M -Xmx[RAM]M -jar craftbukkit.jar" >> start.command
chmod +x start.command
open -a TextEdit start.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".


cause a bird and a fish could fall in love/but where would they live?

Offline

 

#8860 2012-09-11 12:26:11

sonicfan12p
Scratcher
Registered: 2011-11-16
Posts: 1000+

Re: Minecraft Official Topic

jukyter wrote:

Wall of instructions

Good grief, that's a lot of info. I'll tell him you replied then, I hope he can handle that much... tongue


Why are the secret organizations getting all the attention?  mad

Offline

 

#8861 2012-09-11 16:05:09

bonechill
Scratcher
Registered: 2012-05-02
Posts: 500+

Re: Minecraft Official Topic

sonicfan12p wrote:

jukyter wrote:

Wall of instructions

Good grief, that's a lot of info. I'll tell him you replied then, I hope he can handle that much... tongue

not really, all I needed was the windows and the it worked.  tongue
TY jukyter


http://www.planetminecraft.com/files/sigs/scratch9p_693826_sig.jpg

Offline

 

#8862 2012-09-11 16:22:26

Cozyhut3
Scratcher
Registered: 2010-02-06
Posts: 500+

Re: Minecraft Official Topic

christian2000 wrote:

sonicfan12p wrote:

It's one of very few he can access, parental controls prevent him from the rest.

Parental controls once blocked me from pbs kids  tongue

Maybe it was around the same time that that website go hacked.

Serves them right for creating Super-Why.

Offline

 

#8863 2012-09-11 17:59:37

Pants98
Scratcher
Registered: 2012-05-23
Posts: 100+

Re: Minecraft Official Topic

Cozyhut3 wrote:

christian2000 wrote:

sonicfan12p wrote:

It's one of very few he can access, parental controls prevent him from the rest.

Parental controls once blocked me from pbs kids  tongue

Maybe it was around the same time that that website go hacked.

Serves them right for creating Super-Why.

+1


http://i49.tinypic.com/1ig51v.gif

Offline

 

#8864 2012-09-11 19:21:27

soft319
Scratcher
Registered: 2008-02-19
Posts: 1000+

Re: Minecraft Official Topic

shpeters wrote:

kimmy123 wrote:

I drew Herobrine holding a baby creeper. :]
http://i.imgur.com/gXzHl.png

It's so cute.

Can I punch it? *Ssssss... firecracker explosion*


http://bluetetrarpg.web44.net/usercard/img.php?name=soft319

Offline

 

#8865 2012-09-11 21:56:16

CN12
Scratcher
Registered: 2012-07-15
Posts: 1000+

Re: Minecraft Official Topic

Cozyhut3 wrote:

christian2000 wrote:

sonicfan12p wrote:

It's one of very few he can access, parental controls prevent him from the rest.

Parental controls once blocked me from pbs kids  tongue

Maybe it was around the same time that that website go hacked.

Serves them right for creating Super-Why.

I can't stand Super Why.


Click this on April 15th to see the new album from The 10th Dimension!
http://oi48.tinypic.com/23tqhyw.jpg

Offline

 

#8866 2012-09-11 23:35:36

Bklecka
Scratcher
Registered: 2011-08-27
Posts: 1000+

Re: Minecraft Official Topic

CN12 wrote:

Cozyhut3 wrote:

christian2000 wrote:


Parental controls once blocked me from pbs kids  tongue

Maybe it was around the same time that that website go hacked.

Serves them right for creating Super-Why.

I can't stand Super Why.

I wish super why would:
Dig straight down
Hug a creeper
Look at an Endermen
Punch zombie pigmen
Fall 200452 Blocks
Hug a nuclear creeper
Hug a tekkit nucular reactor
Hug a mocreatures aligator
Hug a TF2 pyro
Hug a wither
Hug lava
Hug zombies
Hug me on a pvp server
Hug a bomb
Hug a Toontown PR guy (belive me, they hate everything and everyone)
Put mario on their show and get sued to death by nintendo
Hug antimatter
Hug a nintendo PR guy(same as ToonTown PR Guys)
Hug grasslander32
Get and abuse mod on wheels of life.
Greif WoL with said mod powers.
Break WoL WorldGuard backups with said mod powers.
Troll the yogscast (and have the fans rage the post)


http://i48.tinypic.com/106ijc9.jpg

Offline

 

#8867 2012-09-11 23:37:09

Laternenpfahl
Scratcher
Registered: 2011-06-24
Posts: 1000+

Re: Minecraft Official Topic

Bklecka wrote:

CN12 wrote:

Cozyhut3 wrote:

Maybe it was around the same time that that website go hacked.

Serves them right for creating Super-Why.

I can't stand Super Why.

I wish super why would:
Dig straight down
Hug a creeper
Look at an Endermen
Punch zombie pigmen
Fall 200452 Blocks
Hug a nuclear creeper
Hug a tekkit nucular reactor (mark 7 filled completely with uranium cells)
Hug a mocreatures aligator
Hug a TF2 pyro
Hug a wither
Hug lava
Hug zombies
Hug me on a pvp server
Hug a bomb
Hug a Toontown PR guy (belive me, they hate everything and everyone)
Put mario on their show and get sued to death by nintendo
Hug antimatter
Hug a nintendo PR guy(same as ToonTown PR Guys)
Hug grasslander32
Get and abuse mod on wheels of life.
Greif WoL with said mod powers.
Break WoL WorldGuard backups with said mod powers.
Troll the yogscast (and have the fans rage the post)

fixed

Last edited by Laternenpfahl (2012-09-11 23:49:09)


http://i46.tinypic.com/6yd4c0.png

Offline

 

#8868 2012-09-11 23:45:19

Bklecka
Scratcher
Registered: 2011-08-27
Posts: 1000+

Re: Minecraft Official Topic

Now for a message about hacking:
Most "hackers" you see ANYWHERE just downloaded some software off the internet.
So if someone comes up to you and says "herr durr im a hakurz"
He probably just got Nodus  tongue
Nodus is a well known greifing/hacking/cheating mod for minecraft.


http://i48.tinypic.com/106ijc9.jpg

Offline

 

#8869 2012-09-12 12:31:44

whizzer
Scratcher
Registered: 2008-05-27
Posts: 500+

Re: Minecraft Official Topic

soft319 wrote:

shpeters wrote:

kimmy123 wrote:

I drew Herobrine holding a baby creeper. :]
http://i.imgur.com/gXzHl.png

It's so cute.

Can I punch it? *Ssssss... firecracker explosion*

Awwww… so cute!!!


http://i46.tinypic.com/33df6me.png I'm whizzer0 for all things Minecraft.

Offline

 

#8870 2012-09-12 12:37:04

Cozyhut3
Scratcher
Registered: 2010-02-06
Posts: 500+

Re: Minecraft Official Topic

Bklecka wrote:

CN12 wrote:

Cozyhut3 wrote:


Maybe it was around the same time that that website go hacked.

Serves them right for creating Super-Why.

I can't stand Super Why.

I wish super why would:
Dig straight down
Hug a creeper
Look at an Endermen
Punch zombie pigmen
Fall 200452 Blocks
Hug a nuclear creeper
Hug a tekkit nucular reactor
Hug a mocreatures aligator
Hug a TF2 pyro
Hug a wither
Hug lava
Hug zombies
Hug me on a pvp server
Hug a bomb
Hug a Toontown PR guy (belive me, they hate everything and everyone)
Put mario on their show and get sued to death by nintendo
Hug antimatter
Hug a nintendo PR guy(same as ToonTown PR Guys)
Hug grasslander32
Get and abuse mod on wheels of life.
Greif WoL with said mod powers.
Break WoL WorldGuard backups with said mod powers.
Troll the yogscast (and have the fans rage the post)

What about just ceasing to exist?  tongue

Anyway, Jeb's addin' pumpkin pie!  big_smile

Offline

 

#8871 2012-09-12 12:45:01

CN12
Scratcher
Registered: 2012-07-15
Posts: 1000+

Re: Minecraft Official Topic

Cozyhut3 wrote:

Bklecka wrote:

CN12 wrote:


I can't stand Super Why.

I wish super why would:
Dig straight down
Hug a creeper
Look at an Endermen
Punch zombie pigmen
Fall 200452 Blocks
Hug a nuclear creeper
Hug a tekkit nucular reactor
Hug a mocreatures aligator
Hug a TF2 pyro
Hug a wither
Hug lava
Hug zombies
Hug me on a pvp server
Hug a bomb
Hug a Toontown PR guy (belive me, they hate everything and everyone)
Put mario on their show and get sued to death by nintendo
Hug antimatter
Hug a nintendo PR guy(same as ToonTown PR Guys)
Hug grasslander32
Get and abuse mod on wheels of life.
Greif WoL with said mod powers.
Break WoL WorldGuard backups with said mod powers.
Troll the yogscast (and have the fans rage the post)

What about just ceasing to exist?  tongue

Anyway, Jeb's addin' pumpkin pie!  big_smile

They shouldn't run Super Why. It's so annoying.


Click this on April 15th to see the new album from The 10th Dimension!
http://oi48.tinypic.com/23tqhyw.jpg

Offline

 

#8872 2012-09-12 12:46:39

PonyvilleSlugger
Scratcher
Registered: 2012-07-01
Posts: 100+

Re: Minecraft Official Topic

Cozyhut3 wrote:

Bklecka wrote:

CN12 wrote:


I can't stand Super Why.

I wish super why would:
Dig straight down
Hug a creeper
Look at an Endermen
Punch zombie pigmen
Fall 200452 Blocks
Hug a nuclear creeper
Hug a tekkit nucular reactor
Hug a mocreatures aligator
Hug a TF2 pyro
Hug a wither
Hug lava
Hug zombies
Hug me on a pvp server
Hug a bomb
Hug a Toontown PR guy (belive me, they hate everything and everyone)
Put mario on their show and get sued to death by nintendo
Hug antimatter
Hug a nintendo PR guy(same as ToonTown PR Guys)
Hug grasslander32
Get and abuse mod on wheels of life.
Greif WoL with said mod powers.
Break WoL WorldGuard backups with said mod powers.
Troll the yogscast (and have the fans rage the post)

What about just ceasing to exist?  tongue

Anyway, Jeb's addin' pumpkin pie!  big_smile

Finally, an actual use for it. I was getting sick of pumpkins, you can get seeds but you can only use them for golems, decor or as a hat, now that it's a foodsource, as well as potatoes and carrots, farms will actually be varied instead of "Over here we have wheat, over there there's another field of wheat, to your left there's a wheat field, over there is a self harvesting farm, of wheat, there's a multi-storey wheat farm, and below us is an underground one, oh and some cocoa beans"


♫ 8% of teens pretend to be morally superior due to the music they listen to. If you are one of the 92% of teens who don't, copy and paste this into your signature. ♫♪
http://i46.tinypic.com/waj11e.gif

Offline

 

#8873 2012-09-12 13:10:35

sonicfan12p
Scratcher
Registered: 2011-11-16
Posts: 1000+

Re: Minecraft Official Topic

PonyvilleSlugger wrote:

Finally, an actual use for it. I was getting sick of pumpkins, you can get seeds but you can only use them for golems, decor or as a hat, now that it's a foodsource, as well as potatoes and carrots, farms will actually be varied instead of "Over here we have wheat, over there there's another field of wheat, to your left there's a wheat field, over there is a self harvesting farm, of wheat, there's a multi-storey wheat farm, and below us is an underground one, oh and some cocoa beans"

Too true! The only other thing I grow is sugarcane. And the occasional melon. That's about it.


Why are the secret organizations getting all the attention?  mad

Offline

 

#8874 2012-09-12 13:27:06

PonyvilleSlugger
Scratcher
Registered: 2012-07-01
Posts: 100+

Re: Minecraft Official Topic

sonicfan12p wrote:

PonyvilleSlugger wrote:

Finally, an actual use for it. I was getting sick of pumpkins, you can get seeds but you can only use them for golems, decor or as a hat, now that it's a foodsource, as well as potatoes and carrots, farms will actually be varied instead of "Over here we have wheat, over there there's another field of wheat, to your left there's a wheat field, over there is a self harvesting farm, of wheat, there's a multi-storey wheat farm, and below us is an underground one, oh and some cocoa beans"

Too true! The only other thing I grow is sugarcane. And the occasional melon. That's about it.

Wheat is the only thing really worth growing, 12 wheat will get you from starving to full hunger, it keeps you full for a while and because it only fills 2.5 haunches you're not starving before it's not wasteful to eat it. The potatoes look interesting because they fill 3 haunches and require cooking, but you can get up to 3 from each field.

I know this sounds boring, but I've always been a farmer, in any game that has it I will just farm and farm, I just love the idea of getting back more than I put in.

And here's another thing, this update is meant to be for builders, with all the new decor blocks, the item frames, the cobble fences, the wither's just there because Halloween is coming up, and Jeb's also adding new farmables, what does this mean? It means that because he's looking at farmables (wheat) and new blocks we might actually get a hay bale, which is something I've been waiting for ever since wheat was added.


♫ 8% of teens pretend to be morally superior due to the music they listen to. If you are one of the 92% of teens who don't, copy and paste this into your signature. ♫♪
http://i46.tinypic.com/waj11e.gif

Offline

 

#8875 2012-09-12 13:37:03

sonicfan12p
Scratcher
Registered: 2011-11-16
Posts: 1000+

Re: Minecraft Official Topic

Sound cool, can't wait for the update.  big_smile


Why are the secret organizations getting all the attention?  mad

Offline

 

Board footer