backspace_ wrote:
Does anybody have any tips for Skyblock? I don't know how to get a few things or what to do now, and I'm working on a YouTube series for Skyblock. The video is here https://www.scratch.mit.edu/ext/youtube/?v=EY_NjJ2GnDQ
Please give me tips for what to do to survive/make my play more interesting c:
Make a cobble generator and plant melons. You can join my world if you want a start.
Offline
backspace_ wrote:
Does anybody have any tips for Skyblock? I don't know how to get a few things or what to do now, and I'm working on a YouTube series for Skyblock. The video is here https://www.scratch.mit.edu/ext/youtube/?v=EY_NjJ2GnDQ
Please give me tips for what to do to survive/make my play more interesting c:
Once you get to the nether and zombie pigmen start spawning, make a little hut to kill them easier.
Offline
Yay for 1.5 support for Bukkit, hopefully a recommended build will be out soon.
Offline
stevetheipad wrote:
Yay for 1.5 support for Bukkit, hopefully a recommended build will be out soon.
Lol, we don't even have a beta yet.
Offline
GeonoTRON2000 wrote:
stevetheipad wrote:
Yay for 1.5 support for Bukkit, hopefully a recommended build will be out soon.
Lol, we don't even have a beta yet.
We have a dev and the bugs aren't that serious.
Offline
berberberber wrote:
So I finished the ores. I think I was a bit ambitious with the redstone. What do you think?
http://i.imgur.com/GYKa7Rd.png
Good, except the iron bugs me for some reason - thinking it's the orange tint.
Offline
berberberber wrote:
werdna123 wrote:
berberberber wrote:
So I finished the ores. I think I was a bit ambitious with the redstone. What do you think?
http://i.imgur.com/GYKa7Rd.pngi recommend making them look less like separate blocks, by putting half a bit of one here an there at the sides, connecting together.
No, b/c then the ones next to stone would look terrible.
in that case spread out the ore bits, and reduce the amount of them, so the gap between around the edges doesn't look particularly strange
Offline
Is it true that palm trees and coconuts are coming out in the next update? Couldn't find anything about it on the wiki, but my friend told me so. Of course, if she's correct or not depends on if she had a reliable source. So... has anyone else heard anything about this?
Offline
fireheartocean wrote:
Is it true that palm trees and coconuts are coming out in the next update? Couldn't find anything about it on the wiki, but my friend told me so. Of course, if she's correct or not depends on if she had a reliable source. So... has anyone else heard anything about this?
Unless your friend knows someone in Mojang, I don't think that this is true.
Offline
fireheartocean wrote:
Is it true that palm trees and coconuts are coming out in the next update? Couldn't find anything about it on the wiki, but my friend told me so. Of course, if she's correct or not depends on if she had a reliable source. So... has anyone else heard anything about this?
I don't know. All I know is that there will be some sort of "squiggly blobs".
Offline
stevetheipad wrote:
berberberber wrote:
So I finished the ores. I think I was a bit ambitious with the redstone. What do you think?
http://i.imgur.com/GYKa7Rd.pngGood, except the iron bugs me for some reason - thinking it's the orange tint.
Yeah, the iron has a pretty nasty color.
Offline
Yeah, that's been bugging me all week. It looks so sickly...
I'll try to fix this by making the darker orange less saturated and lighter.
Last edited by berberberber (2013-03-23 12:55:17)
Offline
It'll be called Journey (may seem unfitting right now but I did some major changes)
Offline
Got epic texture pack for minecraft, the bedrock looks a lot better.
Btw, Im modding Minecraft with MCP and trying to make a basic block. I have the right script, but the problem is when ever I try to Recompile it I get an error message saying identifier expected.
Here is the code:
public static final Block example;
example = (new BlockHardDirt(440, 1)).setHardness(1.5F).setResistance(10F).setStepSound(soundStoneFootstep);
IDK if you guys know how to fix it, if you do plz tell me how.
Offline
Shadow36821 wrote:
Got epic texture pack for minecraft, the bedrock looks a lot better.
Btw, Im modding Minecraft with MCP and trying to make a basic block. I have the right script, but the problem is when ever I try to Recompile it I get an error message saying identifier expected.
Here is the code:
public static final Block example;
example = (new BlockHardDirt(440, 1)).setHardness(1.5F).setResistance(10F).setStepSound(soundStoneFootstep);
IDK if you guys know how to fix it, if you do plz tell me how.
Nonononono, you can't do all that in the same line.
public static final Block example; example = new BlockHardDirt(440, 1); example.setHardness(1.5F); example.setResistance(10F); example.setStepSound(soundStoneFootstep);
Offline
GeonoTRON2000 wrote:
Shadow36821 wrote:
Got epic texture pack for minecraft, the bedrock looks a lot better.
Btw, Im modding Minecraft with MCP and trying to make a basic block. I have the right script, but the problem is when ever I try to Recompile it I get an error message saying identifier expected.
Here is the code:
public static final Block example;
example = (new BlockHardDirt(440, 1)).setHardness(1.5F).setResistance(10F).setStepSound(soundStoneFootstep);
IDK if you guys know how to fix it, if you do plz tell me how.Nonononono, you can't do all that in the same line.
Code:
public static final Block example; example = new BlockHardDirt(440, 1); example.setHardness(1.5F); example.setResistance(10F); example.setStepSound(soundStoneFootstep);
Lol yes you can.
Can you post the specific error message?
Last edited by poopo (2013-03-26 18:51:12)
Offline
poopo wrote:
GeonoTRON2000 wrote:
Shadow36821 wrote:
Got epic texture pack for minecraft, the bedrock looks a lot better.
Btw, Im modding Minecraft with MCP and trying to make a basic block. I have the right script, but the problem is when ever I try to Recompile it I get an error message saying identifier expected.
Here is the code:
public static final Block example;
example = (new BlockHardDirt(440, 1)).setHardness(1.5F).setResistance(10F).setStepSound(soundStoneFootstep);
IDK if you guys know how to fix it, if you do plz tell me how.Nonononono, you can't do all that in the same line.
Code:
public static final Block example; example = new BlockHardDirt(440, 1); example.setHardness(1.5F); example.setResistance(10F); example.setStepSound(soundStoneFootstep);Lol yes you can.
Can you post the specific error message?
Lol, it's kinda obvious from what he told us:
Syntax error: Identifier expected
And the only way you could do it in one line was if all of those methods were returning the block object, which I doubt they are.
Offline
geo, go on your server
Offline