Page 1 of 2

[Game] PilzTest [old]

PostPosted: Tue Sep 18, 2012 16:53
by PilzAdam
Hello everyone!
This is my fork if minetest_game: N/A
Direct download link: N/A
How to install: Just replace the default minetest_game (in the games/ folder)

Features:
  • You cant jump over fences
  • Creative inventory has a stack size of 99 for each item and a trash field
  • Creative inventory has a refill field, wich turns a stack to a stack of 99 items
  • Better looking animated fire that causes damage
  • Its dark under water
  • Papyrus doesnt grow inside trees
  • The content of chests and furnaces is dropped as items when digged
  • Fix that bug that placing a slab at the side of another slab turn into the whole node (by xyz)
  • You can climb through leaves
  • The shadows under several nodes like fences are removed
  • Punching flammable nodes with a torch will set them on fire
  • New In creative mode every node is instantly digged
  • New Animated water and lava
Additional Mods:
  • farming
  • throwing (bows and arrows (my version, not the one by jeija))
  • tnt
  • Removed xdoors2
  • Removed animatedfluids
  • Maybe my mobs mod in the future (if it is stable)
Additional Mods, that dont exist as stand-alone mods:
  • cactusmod (not the one by GloopMaster but my own (it only adds spikes that cause damage))
  • Clouds (set alternative_clouds = true in minetest.conf and disable default clouds to have blocks as clouds)
  • New Doors (it has same functionality as xdoors2 but adds a function to easily create new doors; has wooden and steel doors)
License:
See README in the mod folders. If there is no such file for a given mod, its LGPL (e.g. legacy and give_initial_stuff).

PostPosted: Thu Sep 20, 2012 09:19
by Echo
got many unknown items:
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
farming:rhubarb_seed
farming:potatoe_seed
farming:tomato_seed
farming:orange_seed
farming:carrot_seed

PostPosted: Wed Sep 26, 2012 08:17
by cornernote
I whacked up a gamewiki for this game:
http://cornernote.net/minetest/gamewiki/vanilla/

PostPosted: Thu Sep 27, 2012 01:13
by cornernote
also, you should give it a better name than "My fork of minetest_game". I like Vanilla Game.

PostPosted: Sun Sep 30, 2012 12:26
by PilzAdam
Ive updated the first post.

PostPosted: Sun Sep 30, 2012 14:23
by PilzAdam
Echo wrote:got many unknown items:
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
farming:rhubarb_seed
farming:potatoe_seed
farming:tomato_seed
farming:orange_seed
farming:carrot_seed

This was a bug in farming mod. I fixed it.

PostPosted: Mon Oct 01, 2012 02:18
by cornernote
do you have a way to get dye?

PostPosted: Mon Oct 01, 2012 02:34
by cornernote
building arrow does this:
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
12:01:54: ACTION[ServerThread]: singleplayer digs default:desert_sand at (-72,19,75)
12:01:56: ACTION[ServerThread]: singleplayer uses throwing:bow_wood, pointing at [node under=-71,18,79 above=-71,19,79]
12:01:56: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (-70,19,79) (block (-5,1,4))
12:01:56: ERROR[main]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (-70,19,79) (block (-5,1,4))


What's it supposed to do?

Bow and arrow would be really cool with something like deploy nodes.

PostPosted: Mon Oct 01, 2012 02:43
by cornernote
this is a really awesome default game.

any chance of adding item_drop, builtin_item, and particles to this?

PostPosted: Mon Oct 01, 2012 06:58
by PilzAdam
cornernote wrote:do you have a way to get dye?

Good idea!

PostPosted: Mon Oct 01, 2012 06:59
by PilzAdam
cornernote wrote:building arrow does this:
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
12:01:54: ACTION[ServerThread]: singleplayer digs default:desert_sand at (-72,19,75)
12:01:56: ACTION[ServerThread]: singleplayer uses throwing:bow_wood, pointing at [node under=-71,18,79 above=-71,19,79]
12:01:56: ERROR[ServerThread]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (-70,19,79) (block (-5,1,4))
12:01:56: ERROR[main]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (-70,19,79) (block (-5,1,4))


What's it supposed to do?

Bow and arrow would be really cool with something like deploy nodes.

This seems to be a bug in my throwing mod. Can you post more information in the topic of this mod?

PostPosted: Mon Oct 01, 2012 06:59
by PilzAdam
cornernote wrote:this is a really awesome default game.

any chance of adding item_drop, builtin_item, and particles to this?

Im not sure if it would be too MC like.

PostPosted: Mon Oct 01, 2012 09:48
by cornernote
i don't think so, and even if it is more MC like, is that a bad thing?

i know it may conflict with the direction of MiniTest, however thes few effects mods would increase the fun of this game.

do any other people have comments on this? would you like to see these effects mods in PilzAdam's minetest_game?

PostPosted: Mon Oct 01, 2012 10:00
by cornernote
i don't like the clouds (sorry). apart from the visual, is there any advantage?

PostPosted: Mon Oct 01, 2012 11:05
by cornernote
WTFPL

Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
local register_dye_craft = function(output,recipe)
    minetest.register_craft({
        output = output,
        type = 'shapeless',
        recipe = recipe,
    })
end

-- black/white from sand/coal
register_dye_craft('dye:white 16', {'bucket:bucket_water', 'default:sand'})
register_dye_craft('dye:black 16', {'bucket:bucket_water', 'default:coal_lump'})

-- dye from nodes
register_dye_craft('dye:red 16', {'dye:white', 'default:apple'})
register_dye_craft('dye:green 16', {'dye:white', 'default:cactus'})
register_dye_craft('dye:blue 16', {'dye:white', 'default:coal_lump'})

-- dye from other dye
register_dye_craft('dye:cyan 2', {'dye:white', 'dye:blue'})
register_dye_craft('dye:grey 2', {'dye:white', 'dye:black'})
register_dye_craft('dye:pink 2', {'dye:white', 'dye:red'})
register_dye_craft('dye:brown 2', {'dye:red', 'dye:green'})
register_dye_craft('dye:yellow 2', {'dye:blue', 'default:green'})
register_dye_craft('dye:dark_green 2', {'dye:green', 'dye:black'})
register_dye_craft('dye:dark_grey 2', {'dye:grey', 'dye:black'})
register_dye_craft('dye:magenta 2', {'dye:red', 'dye:cyan'})
register_dye_craft('dye:violet 2', {'dye:red', 'dye:blue'})
register_dye_craft('dye:orange 2', {'dye:red', 'dye:yellow'})

PostPosted: Mon Oct 01, 2012 11:57
by Alfino
cornernote wrote:i don't like the clouds (sorry). apart from the visual, is there any advantage?


the cloud is a block, which may be used as weather mod in the future(I think ?)

PostPosted: Mon Oct 01, 2012 12:06
by cornernote
u can make rain spawn above the player without clouds

PostPosted: Mon Oct 01, 2012 13:12
by Alfino
yeah, but it'll make more sense if rain drop from cloud

PostPosted: Mon Oct 01, 2012 14:35
by PilzAdam
cornernote wrote:i don't like the clouds (sorry). apart from the visual, is there any advantage?

You dont have to enable the alternative_clouds in minetest.conf.
Alfino wrote:the cloud is a block, which may be used as weather mod in the future(I think ?)

Thats one reason i added them. The other is that i think they look better.

PostPosted: Mon Oct 01, 2012 17:50
by PilzAdam
cornernote wrote:WTFPL

Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
local register_dye_craft = function(output,recipe)
    minetest.register_craft({
        output = output,
        type = 'shapeless',
        recipe = recipe,
    })
end

-- black/white from sand/coal
register_dye_craft('dye:white 16', {'bucket:bucket_water', 'default:sand'})
register_dye_craft('dye:black 16', {'bucket:bucket_water', 'default:coal_lump'})

-- dye from nodes
register_dye_craft('dye:red 16', {'dye:white', 'default:apple'})
register_dye_craft('dye:green 16', {'dye:white', 'default:cactus'})
register_dye_craft('dye:blue 16', {'dye:white', 'default:coal_lump'})

-- dye from other dye
register_dye_craft('dye:cyan 2', {'dye:white', 'dye:blue'})
register_dye_craft('dye:grey 2', {'dye:white', 'dye:black'})
register_dye_craft('dye:pink 2', {'dye:white', 'dye:red'})
register_dye_craft('dye:brown 2', {'dye:red', 'dye:green'})
register_dye_craft('dye:yellow 2', {'dye:blue', 'default:green'})
register_dye_craft('dye:dark_green 2', {'dye:green', 'dye:black'})
register_dye_craft('dye:dark_grey 2', {'dye:grey', 'dye:black'})
register_dye_craft('dye:magenta 2', {'dye:red', 'dye:cyan'})
register_dye_craft('dye:violet 2', {'dye:red', 'dye:blue'})
register_dye_craft('dye:orange 2', {'dye:red', 'dye:yellow'})

Added: https://github.com/PilzAdam/minetest_game/commit/c9744cd4ed05c772ba047b3f5a779ad44a65afbc
But in my version you get the bucket back.

PostPosted: Tue Oct 02, 2012 00:03
by cornernote
PilzAdam wrote:You dont have to enable the alternative_clouds in minetest.conf.


I did that. I prefer the old blocky style clouds that fly through the sky (which are also still there).

I'll take a screenshot later, maybe it looks different on mine.

PostPosted: Tue Oct 02, 2012 00:58
by cornernote
Image

the one on the left looks ok, the one on the right is too square.

PostPosted: Tue Oct 02, 2012 12:36
by PilzAdam
cornernote wrote:
PilzAdam wrote:You dont have to enable the alternative_clouds in minetest.conf.


I did that. I prefer the old blocky style clouds that fly through the sky (which are also still there).

I'll take a screenshot later, maybe it looks different on mine.

1st: it looks better if you disable the c++ clouds
2nd: it looks better with a high view range

PostPosted: Wed Oct 03, 2012 10:08
by PilzAdam
First post updated.

PostPosted: Thu Oct 04, 2012 07:08
by cornernote
request

a gate of some sort to be included... it should fit well between fences and normal nodes.

PostPosted: Thu Oct 04, 2012 07:33
by cornernote
request

junglegrass and jungletree should spawn, as they are default nodes but there is no way to get them into the game without a mod

PostPosted: Mon Oct 08, 2012 03:52
by cornernote
how do you disable c++ clouds?

PostPosted: Mon Oct 08, 2012 04:28
by Calinou
cornernote wrote:how do you disable c++ clouds?


Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
enable_clouds = false

PostPosted: Mon Oct 08, 2012 06:08
by PilzAdam
cornernote wrote:how do you disable c++ clouds?

http://minetest.net/forum/viewtopic.php?id=3197

PostPosted: Mon Oct 08, 2012 14:01
by cornernote
I think that is_ground_content and legacy_mineral, as well as any other legacy code should be removed. It makes for much better example code without it there, and people often start looking at their first lua/minetest code in the default mod.