Note:I didn't make minetest,I just like the game.
Minetest: the best free minecraft game!
there isn't much to say about minetest, since it is so like minecraft.
if you download it from here and try it, feel free to discuss and ask questions below.
Last edited by Martiscratch (2012-12-31 12:01:01)
Offline
bump
Offline
bump...
Offline
bump
Offline
Isn't it just a free version of Minecraft?
Offline
I used to play it when it was in 0.3.1, but I don't really like the 0.4 update
Offline
Gravitation wrote:
Isn't it just a free version of Minecraft?
it is a totally different game but is minecraft based.
Offline
here's the correct download link
http://minetest.net/download.php
Offline
kayybee wrote:
here's the correct download link
http://minetest.net/download.php
fixed.
Offline
bump
Offline
slinger wrote:
It's fun to play when I'm really bored. It's like a less complicated version of minecraft
not with mods installed
Mesecons is VERY advanced.
Offline
Necromaster wrote:
It's basically minecraft. It really needs a new name...
It's NOT minecraft
Offline
Martiscratch wrote:
slinger wrote:
It's fun to play when I'm really bored. It's like a less complicated version of minecraft
not with mods installed
Mesecons is VERY advanced.
Easy mod API
Offline
playzooki wrote:
Martiscratch wrote:
slinger wrote:
It's fun to play when I'm really bored. It's like a less complicated version of minecraft
not with mods installed
Mesecons is VERY advanced.Easy mod API
but you need to know how to use the API.
Offline
Martiscratch wrote:
playzooki wrote:
Martiscratch wrote:
not with mods installed
Mesecons is VERY advanced.Easy mod API
but you need to know how to use the API.
I coded a samurai sword. I am not very good at lua but there is official documentation.(Tip: Copy and paste code. )
Offline
playzooki wrote:
Martiscratch wrote:
playzooki wrote:
Easy mod APIbut you need to know how to use the API.
I coded a samurai sword. I am not very good at lua but there is official documentation.(Tip: Copy and paste code. )
I made a block called decowood crafted:
WW
WW
W=wood
Offline
bump
Offline
bump
Offline
Martiscratch wrote:
playzooki wrote:
Martiscratch wrote:
but you need to know how to use the API.I coded a samurai sword. I am not very good at lua but there is official documentation.(Tip: Copy and paste code. )
I made a block called decowood crafted:
WW
WW
W=wood
btw. here is the code:
minetest.register_node("tutorial:decowood", { tile_images = {"tutorial_decowood.png"}, groups={level=1}, }) minetest.register_craft({ output = '"tutorial:decowood" 2', recipe = { {'default:wood', 'default:wood', ''}, {'default:wood', 'default:wood', ''}, {'', '', ''}, } }) minetest.register_abm( {nodenames = {"tutorial:decowood"}, interval = 30, chance = 1, action = function(pos) minetest.env:add_node(pos, {name="default:wood"}) end, })
Offline
That is from my tutorial: http://tinyurl.com/mt-tut
Offline
kidomat43 wrote:
That is from my tutorial: http://tinyurl.com/mt-tut
I know. I follow tutorials
Offline