http://www.computerc...n-minecraft-10/
Its out!! ^ (DOWNLOAD IN THAT LINK :DDD)
This is my first program that includes a level generator and colors, this program only works on minecraft 1.45
Currently:
- Towering (Place a block on your character)
- Flatland Generator (No ores)
- Inventory (bottom left, 1-8 to select slots)
- Block Info (Select a block in your inventory to see it)
- Block Breaking (Left Click)
- Block Placing (Right Click)
- Working API
- Character Movement
- Main Menu
- Debugging (F3)
- Collision Detector
Right above each item in the inventory is a number, that number is the quantity of that item. When it reaches 9 (max stack), it goes into the next available slot.
Generation method:
(Flatland)
generateTree(math.random(5,12), 4)
for i=1,x do
placeBlock(i,5, "Grass")
placeBlock(i,6, "Dirt")
placeBlock(i,7, "Dirt")
blockType = math.random(1,2)
if blockType == 1 then
placeBlock(i,8, "Dirt")
else
placeBlock(i,8, "Stone")
end
for v=9,y do
placeBlock(i,v, "Stone")
end
end
[media]http://www.youtube.com/watch?v=sEc0sKspHdM[/media]