I have just re-vamped my survival map and fixed/improved almost everything; The basic idea of stuck in a box is that you're in a box and you complete challenges while surviving, there is a huge cave right under you at spawn and the nether has a box of its own with its own challenges. I hope you enjoy my map and please leave any feedback on my page. Thank you, and enjoy.
Change-log
V.7 Update (The Long Long Time Update)
Added more challenges
Removed old challenges
Added Animals
Added enchantment room in the nether
Added all new pics on the page
Cleaned up the map as a whole
V.6 Update (The Ultimate Renovation Update)
Added more challenges
Removed snow, dungeon, and sand box
Improved nether box
Fixed glass spawn bug
Removed older challenges
Added more nether challenges
Fixed spelling errors
Added new pics
Improved emergency glass chest
V.5 Update (The Box Update)
Added snow box
Added dungeon box
Added sand box
Fixed spelling errors
Added secret way out of the nether box
Added more challenges
Fixed bugged door in all box's
Added more chest's
Added more diamonds
Added 1 More Pic
V.4 Update (The Nether Update)
Added box in the nether
Added challenges in the nether
Added more challenges in the regular box
Added more clay
Added a hint where one of the secret chest is located
Added a outside to the nether
Added a use for useless fence thing
Fixed spelling errors
V.3 Update (The Hidden Update)
Added more challenges
Added nether portal
Added more materials (gold iron coal etc.)
Added hidden bunker
Added more hidden chests
Added useless fence thing
V.2 Update (The Start)
Added more pumpkins
Fixed spelling errors
Added more challenges
Downloads for V.7
.RAR - http://www.mediafire.com/download/ylpqm529yl7aeap/Stuck In A Box V.7(RaR).rar
.7z - http://www.mediafire.com/download/084az149c4citb3/Stuck In A Box V.7(Zip).7z
Older Versions
V.1 http://www.mediafire.com/download/9953krjccjcwgc2/Meh Totally Original Map.7z
V.2 http://www.mediafire.com/download/6yjnj28wbc7hu83/Meh Totally Original Map V.2.7z
V.3 http://www.mediafire.com/download/i5ecsy5rjd6co63/Meh Totally Original Map V.3.7z
V.4 http://www.mediafire.com/download/7y75qm192pcpmoz/Meh Totally Original Map V.4.7z
V.5 http://www.mediafire.com/download/6gfnl6zpp5et2nh/Stuck In A Box V.5.7z
V.6 http://www.mediafire.com/download/di5nwwoh5gbqzcn/Stuck In A Box V.6.rar
Enjoy
1
1
Edit: just noticed you aren't using a custom block class.
You'll have to create a new class, call it whatever ever you want, but it would typically be called BlockNameHere.java, ex. BlockDirt.
to create one you need to make sure the class extends Block and adds a constructor,
public BlockNameHere(int i, int j)
{
super(i, j, Material.ground);
}
and two methods,
public int idDropped(int i, Random random, int j)
{
return this.blockID;
}
public int quantityDropped(Random random)
{
return 1;
}
1
1
1