Poll

is minecraft dead

yes
271 (61.7%)
no
168 (38.3%)

Total Members Voted: 438

Author Topic: Minecraft Megathread; yeah its update 1.12 big whoop what about it  (Read 6943312 times)

I installed the skins, but they don't work ;-;


how to I get a cheat engine for minecraft?

how to I get a cheat engine for minecraft?
You don't?

OH MY GOD! I just hit my first gold vein!


I was just sitting there mining ore for my castle then boom shiny yellow, then I shat bricks.

:')

Holy stuff.
Someone gift me this to Russia.

First taim?
Lul.
I got gold on my first time i played.

OH MY GOD! I just hit my first gold vein!

[img]http://img688.imageshack.us/img688/5007/zomgwtfbbqmncrft.png[/img
I was just sitting there mining ore for my castle then boom shiny yellow, then I shat bricks.

:')
gold sucks at everthing but looking nice :(

Actually gold is MEANT for armor.
Since its stufftier than iron for a tool.
Sword is good too with gold.
EDIT:Also if MP is out.
NOBODY loving FLOOD THE MINES.
Blueprint ftw.
EDITTWO:FFFFFFFFFFFFforget YES!
I now have a underground tree farm.
EDIT3:Goddam spiders.
now i only have 1 hearth left.
« Last Edit: June 14, 2010, 07:15:35 AM by PossesedAngel »


Hi.
Sup.

Actually gold is MEANT for armor.
Since its stufftier than iron for a tool.
Sword is good too with gold.
EDIT:Also if MP is out.
NOBODY loving FLOOD THE MINES.
Blueprint ftw.
EDITTWO:FFFFFFFFFFFFforget YES!
I now have a underground tree farm.
EDIT3:Goddam spiders.
now i only have 1 hearth left.
Lol, wat.

Actually gold is MEANT for armor.
Since its stufftier than iron for a tool.
Sword is good too with gold.
EDIT:Also if MP is out.
NOBODY loving FLOOD THE MINES.
Blueprint ftw.
EDITTWO:FFFFFFFFFFFFforget YES!
I now have a underground tree farm.
EDIT3:Goddam spiders.
now i only have 1 hearth left.
Weaponwise and possibly armorwise, gold is on the same tier as wood, making it weak and a waste of awesome gold blocks.

I seriously can't wait for Survival Multiplayer. :D

Lol, wat.
H&H broke my English.
anyhow i find gold useful for GOLD BLOCKS
And wood is actually a good thing for armor.
also i love a armor skin that makes me look like a assassins creed cigarettegit.
YEAH BABY!
« Last Edit: June 14, 2010, 08:43:33 AM by PossesedAngel »

Sorry guys, but..
Quote
A gentle warning about infdev saves breaking
I hate to do this, but I will break all your infdev saves.

One of the major performance issues with infdev is how it saves levels. I need to give it a major overhaul, and that will cause all old saves to break.

It would be possible to write a level converter for it, but I’m leaning towards not doing it, as it’s quite a bit of work just for preserving levels in a development build of an alpha version of the game..
If people are REALLY in love with their games, I could probably do something that converts only the terrain (no mobs, no chest contents, not keeping track of the time of day), or possibly work with some volunteer and give out information on how to write a level converter. If you wish to do this, first make sure you understand the NBT file format.

This save breaking change almost certainly won’t happen this week, and I won’t delete the old files after the change, so there’s still time to implement a converter after the change.

[edit:]

As requested, here’s the actual technical reason:

Right now, the level is saved in files that cover 16*16*128 blocks. Each file gets a unique name for the zone it covers, and gets saved to a subdirectory of a subdirectory to avoid having too many files in a single dir. My test level (which isn’t huge by any means) takes up 6.11 MB in 4825 files in 4160 folders. That’s an average of just over 1 kb per file.
The file system on my computer (and many others) won’t allocate less than 4 kb per file, so the actual space used for this save is 18.8 mb. That means that the save is three times the size it really should be.

Saving and loading new areas of a map causes a lot of file seeks and reads (30 per second is not uncommon), which is far from optimal. Added on top of this is the time spent compressing and decompressing the data.

Instead, the new plan is to store data in much larger individual zones of uncompressed terrain data that can be directly memory mapped. Each zone will probably be something like 256*256*128 blocks and will occupy 4 MB each. Entities and Tile Entities will be saved in a separate database like structure.