[Mod] Default Plus [1.1.2] [dplus]

User avatar
BlockMen
Member
 
Posts: 768
Joined: Fri Mar 01, 2013 17:24
GitHub: BlockMen

[Mod] Default Plus [1.1.2] [dplus]

by BlockMen » Sat May 18, 2013 13:20

Hi everyone,

this mod modifies and adds a few things of the default parts of Minetest.

New items:
- Charcoal (by putting a tree log in furnace) (1 tree -> 1 charcoal)
- Hardened Clay (by putting a clay block in furnace) (1 clayblock -> 1 hardened clay)

Changed Appearance:
- Cactus have spikes
- Ice is semi-transparent
- Water has a better color and breightness when under water
- Glass is semi-transparent

Changed Behavior:
- Flowing water makes sound
- Lava makes sound and spawns randomly particles
- Cactus damage Players [Mobs not tested yet]
- You get 4 Stonebricks instead 1 Stonebrick
- Torches can also be crafted with charcoal
- Leaves dont decay when placed by player
- Apple decay from trees (is now in default)
- Dirt with snow turns into Dirt with Grass when snow is digged

Screenshots:
Image
Image
Image
Image
or just watch this video
Depends:
default

Download:
Version 1.1.2: Download for Minetest dev

Version 1.1.1: Download for Minetest 0.4.7
Version 1.1: Download for Minetest 0.4.6

Version 1.0.2: old Version
Version 1.0: old Version
other ice drawtype: ice-edition (has also semi-transparent ice)

License:
Code: WTFPL, sounds: CC-BY 3.0, CC0


Please give Feedback and ideas for improvement.
Last edited by BlockMen on Thu Aug 08, 2013 20:19, edited 1 time in total.
 

User avatar
rubenwardy
Member
 
Posts: 4500
Joined: Tue Jun 12, 2012 18:11
GitHub: rubenwardy
IRC: rubenwardy
In-game: rubenwardy

by rubenwardy » Sat May 18, 2013 13:22

Nice!
 

User avatar
PilzAdam
Member
 
Posts: 4026
Joined: Fri Jul 20, 2012 16:19
GitHub: PilzAdam
IRC: PilzAdam

by PilzAdam » Sat May 18, 2013 13:41

The reason why ice isnt semi-transparent in minetest_game is that its very glitchy.
 

User avatar
BlockMen
Member
 
Posts: 768
Joined: Fri Mar 01, 2013 17:24
GitHub: BlockMen

by BlockMen » Sat May 18, 2013 13:57

rubenwardy wrote:Nice!

Thanks.

PilzAdam wrote:The reason why ice isnt semi-transparent in minetest_game is that its very glitchy.

I have added a second version for people who may have problems with that. But is has also semi-transparent ice.
 

User avatar
Jordach
Member
 
Posts: 4412
Joined: Mon Oct 03, 2011 17:58
GitHub: Jordach
IRC: Jordach
In-game: Jordach

by Jordach » Sat May 18, 2013 17:39

Can we see underwater with a comparison to normal water?

( ͡° ͜ʖ ͡°) ( ͡o ͜ʖ ͡o) [$ ( ͡° ͜ʖ ͡°) $] ( ͡$ ͜ʖ ͡$) ヽ༼ຈل͜ຈ༽ノ



My image and media server is back online and is functioning as normal.
 

User avatar
webdesigner97
Member
 
Posts: 1307
Joined: Mon Jul 30, 2012 19:16
GitHub: webD97
IRC: webdesigner97
In-game: webdesigner97

by webdesigner97 » Sat May 18, 2013 18:05

Ah, this looks very interesting!
 

User avatar
BlockMen
Member
 
Posts: 768
Joined: Fri Mar 01, 2013 17:24
GitHub: BlockMen

by BlockMen » Sat May 18, 2013 18:54

Jordach wrote:Can we see underwater with a comparison to normal water?


Sure.

With this mod: Image
Normal: Image
 

User avatar
BlockMen
Member
 
Posts: 768
Joined: Fri Mar 01, 2013 17:24
GitHub: BlockMen

by BlockMen » Sat May 18, 2013 19:03

Hybrid Dog wrote:for me the normal one looks better and more realistic


Well, you dont have to install this mod and better is always subjective. Furthermore it says nowhere to be more realistic.
 

User avatar
12Me21
Member
 
Posts: 826
Joined: Tue Mar 05, 2013 00:36

by 12Me21 » Sat May 18, 2013 19:13

you should make glass translucent too, like this:
Image

Here's the texture file I used:
Image
This is a signature virus. Add me to your signature so that I can multiply.
Don't ever save anything as a JPEG.
 

User avatar
BlockMen
Member
 
Posts: 768
Joined: Fri Mar 01, 2013 17:24
GitHub: BlockMen

by BlockMen » Sat May 18, 2013 19:29

12Me21 wrote:you should make glass translucent too [...]


Nice idea. Added to my list.
 

User avatar
BlockMen
Member
 
Posts: 768
Joined: Fri Mar 01, 2013 17:24
GitHub: BlockMen

by BlockMen » Mon May 20, 2013 22:32

Update: Version 1.0.1

- Dirt with snow turns into Dirt with Grass when snow is digged
 

User avatar
12Me21
Member
 
Posts: 826
Joined: Tue Mar 05, 2013 00:36

by 12Me21 » Mon May 20, 2013 22:40

You should make footprints appear when you walk (using the node "default:dirt_with_grass_footprints")
Here is the code I made for it (the abm may not work, I haven't tested it yet)
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
--
--Make Footprints
--

minetest.register_globalstep(function(dtime)
    for _,player in ipairs(minetest.get_connected_players()) do
        local pos = player:getpos()
        local ground_pos = { x=math.floor(pos.x+0.5), y=math.floor(pos.y), z=math.floor(pos.z+0.5) }
        local ground = minetest.env:get_node(ground_pos)

if ground.name == "default:dirt_with_grass" then
    minetest.env:add_node(ground_pos,{type="node",name="default:dirt_with_grass_footsteps"})
        end
    end
end)

--
--New footprint Texture
--

minetest.register_node(":default:dirt_with_grass_footsteps", {
    description = "Dirt with Grass and Footsteps",
    inventory_image = "default_grass_footsteps.png",
    tiles = {"footprints.png", "default_dirt.png", "default_dirt.png^default_grass_side.png"},
    is_ground_content = true,
    groups = {crumbly=3, not_in_creative_inventory=1},
    drop = 'default:dirt',
    sounds = default.node_sound_dirt_defaults({
        footstep = {name="default_grass_footstep", gain=0.4},
    }),
})

--
--Make Footprints Go Away
--

minetest.register_abm({
    nodenames = {"default:dirt_with_grass_footsteps"},
    interval = 50,
    chance = 20,
    action = function(pos, node)
        minetest.env:add_node(ground_pos,{type="node",name="default:dirt_with_grass"})
    end,
})


And the new texture:
Image
This is a signature virus. Add me to your signature so that I can multiply.
Don't ever save anything as a JPEG.
 

User avatar
BlockMen
Member
 
Posts: 768
Joined: Fri Mar 01, 2013 17:24
GitHub: BlockMen

by BlockMen » Tue May 21, 2013 19:25

Update: Version 1.0.2

- Bugfixed torch with charcoal
 

qznc
Member
 
Posts: 55
Joined: Tue Jul 03, 2012 09:02

by qznc » Wed May 22, 2013 08:10

Nice mod! Added it to "famish".

Do you have a github repo or just zip releases?
 

qznc
Member
 
Posts: 55
Joined: Tue Jul 03, 2012 09:02

by qznc » Fri May 24, 2013 19:00

Bugfix: Resolve conflict with stoneage's torch crafting.

See change: https://github.com/qznc/famish/commit/4c74d0f6aecf2f1fd7a05a71825add1d556eef74

Although, I am not sure if this is the right approach.
 

User avatar
BlockMen
Member
 
Posts: 768
Joined: Fri Mar 01, 2013 17:24
GitHub: BlockMen

by BlockMen » Fri May 24, 2013 19:48

qznc wrote:Bugfix: Resolve conflict with stoneage's torch crafting.

See change: https://github.com/qznc/famish/commit/4c74d0f6aecf2f1fd7a05a71825add1d556eef74

Although, I am not sure if this is the right approach.


Yes, it is the right approach. You dont need to change depends.txt for checking if a mod is installed.

You can cut the code a little bit like this https://gist.github.com/BlockMen/5646006, which makes handling more fixes for other torches easier ;)
 

User avatar
Casimir
Member
 
Posts: 1101
Joined: Fri Aug 03, 2012 16:59

by Casimir » Fri May 24, 2013 20:27

I like the water sound, it make the game move vivid immediately.

12Me21 wrote:And the new texture:
Image

Would you please tell me the license for the texture? So I can use it in my game-mode.
 

qznc
Member
 
Posts: 55
Joined: Tue Jul 03, 2012 09:02

by qznc » Sat May 25, 2013 13:31

README states "License of source code and textures: WTFPL"
Last edited by qznc on Sat May 25, 2013 13:31, edited 1 time in total.
 

User avatar
12Me21
Member
 
Posts: 826
Joined: Tue Mar 05, 2013 00:36

by 12Me21 » Sat May 25, 2013 14:20

Casimir wrote:I like the water sound, it make the game move vivid immediately.

12Me21 wrote:And the new texture:
Image

Would you please tell me the license for the texture? So I can use it in my game-mode.

WTFPL, I guess
This is a signature virus. Add me to your signature so that I can multiply.
Don't ever save anything as a JPEG.
 

User avatar
Inocudom
Member
 
Posts: 2889
Joined: Sat Sep 29, 2012 01:14
IRC: Inocudom
In-game: Inocudom

by Inocudom » Sat May 25, 2013 14:29

I like the translucent ice and the lava particles. I hope these can make it into the default game one day.
 

User avatar
BlockMen
Member
 
Posts: 768
Joined: Fri Mar 01, 2013 17:24
GitHub: BlockMen

by BlockMen » Sat May 25, 2013 16:04

Casimir wrote:I like the water sound, it make the game move vivid immediately.

Inocudom wrote:I like the translucent ice and the lava particles.

Thanks.

Inocudom wrote:I hope these can make it into the default game one day.

I dont think that it gets merged...

EDIT: Because Apple decay is added to default game it will be removed from this mod when 0.4.7 is released.
Last edited by BlockMen on Sat May 25, 2013 18:21, edited 1 time in total.
 

User avatar
BlockMen
Member
 
Posts: 768
Joined: Fri Mar 01, 2013 17:24
GitHub: BlockMen

by BlockMen » Sat Jun 01, 2013 18:43

Update: Version 1.1 released

- Added semi-transparent glass
Image
 

User avatar
BlockMen
Member
 
Posts: 768
Joined: Fri Mar 01, 2013 17:24
GitHub: BlockMen

by BlockMen » Sat Jun 08, 2013 18:43

Update: Version 1.1.1

- removed apple decay because it has been added to Minetest 0.4.7
 

User avatar
Jordach
Member
 
Posts: 4412
Joined: Mon Oct 03, 2011 17:58
GitHub: Jordach
IRC: Jordach
In-game: Jordach

by Jordach » Sat Jun 22, 2013 23:01

BlockMen wrote:Update: Version 1.1.1

- removed apple decay because it has been added to Minetest 0.4.7
Yay.

( ͡° ͜ʖ ͡°) ( ͡o ͜ʖ ͡o) [$ ( ͡° ͜ʖ ͡°) $] ( ͡$ ͜ʖ ͡$) ヽ༼ຈل͜ຈ༽ノ



My image and media server is back online and is functioning as normal.
 

User avatar
TenPlus1
Member
 
Posts: 1874
Joined: Mon Jul 29, 2013 13:38
GitHub: tenplus1

by TenPlus1 » Thu Aug 08, 2013 13:29

Great mod, I noticed that drowning only seems to happen when under moving water, not still waters... Could you fix please :)
 

User avatar
BlockMen
Member
 
Posts: 768
Joined: Fri Mar 01, 2013 17:24
GitHub: BlockMen

by BlockMen » Thu Aug 08, 2013 20:21

Update: Version 1.1.2

Changelog:
- Added drowning for current dev versions
 

User avatar
Johnyknowhow
Member
 
Posts: 358
Joined: Fri Sep 21, 2012 15:17
In-game: Minetestian

by Johnyknowhow » Sun Nov 17, 2013 21:05

BlockMen wrote:Update: Version 1.1.2

Changelog:
- Added drowning for current dev versions


Dammit, HO U GET CURNT DEV VERSIONS?!?!
I lost interest in Minetest for a couple of years and... I am still not really paying much attention. I rarely browse these forums anymore but it's nice to see old faces.

obligatory fancy signature goes here
 

User avatar
jojoa1997
Member
 
Posts: 2890
Joined: Thu Dec 13, 2012 05:11

by jojoa1997 » Sun Nov 17, 2013 22:06

Johnyknowhow wrote:
BlockMen wrote:Update: Version 1.1.2

Changelog:
- Added drowning for current dev versions


Dammit, HO U GET CURNT DEV VERSIONS?!?!
Eaither compile or download from one of the builds which can be found at the top of the general discussion section
Coding;
1X coding
3X debugging
12X tweaking to be just right
 

User avatar
Johnyknowhow
Member
 
Posts: 358
Joined: Fri Sep 21, 2012 15:17
In-game: Minetestian

by Johnyknowhow » Sun Nov 17, 2013 22:31

jojoa1997 wrote:
Johnyknowhow wrote:
BlockMen wrote:Update: Version 1.1.2

Changelog:
- Added drowning for current dev versions


Dammit, HO U GET CURNT DEV VERSIONS?!?!
Eaither compile or download from one of the builds which can be found at the top of the general discussion section


YEEEEESSSSSSSSSSSS!!!!!!!
someone finnaly told me!
I lost interest in Minetest for a couple of years and... I am still not really paying much attention. I rarely browse these forums anymore but it's nice to see old faces.

obligatory fancy signature goes here
 

CheerfulCherub
Member
 
Posts: 59
Joined: Sat Jan 25, 2014 23:03

by CheerfulCherub » Fri Mar 07, 2014 01:14

I tried Minetest Plus today and I can't seem to get some of my Mods to work, Infurn won't work, beds don't work and Mesecons don't work. Here is the debug.x

__
20:27:24: ACTION[main]: _____ |__| ____ _____/ |_ ____ _______/ |_
20:27:24: ACTION[main]: / \| |/ \_/ __ \ __\/ __ \ / ___/\ __\
20:27:24: ACTION[main]: | Y Y \ | | \ ___/| | \ ___/ \___ \ | |
20:27:24: ACTION[main]: |__|_| /__|___| /\___ >__| \___ >____ > |__|
20:27:24: ACTION[main]: \/ \/ \/ \/ \/
20:27:24: ACTION[main]: World at [C:\Users\Maleta\Documents\orginal game\minetest-0.4.9-dev20140206_directx\bin\..\worlds\Ravendra Magicial World]
20:27:24: ACTION[main]: Server for gameid="minetest_plus-master" listening on 0.0.0.0:52545.
20:27:42: ACTION[ServerThread]: singleplayer [0.0.0.1] joins game.
20:27:42: ACTION[ServerThread]: singleplayer [0.0.0.1] joins game. List of players:
20:27:59: ERROR[main]: generateImage(): Could not load image "invisible.png" while building texture
20:27:59: ERROR[main]: generateImage(): Creating a dummy image for "invisible.png"
Font size: 8 17
20:37:45: ACTION[main]: WARNING: Mod name conflict detected: "doors"
20:37:45: ACTION[main]: Will not load: C:\Users\Maleta\Documents\orginal game\minetest-0.4.9-dev20140206_directx\bin\..\games\minetest_plus-master\mods\doors
20:37:45: ACTION[main]: Overridden by: C:\Users\Maleta\Documents\orginal game\minetest-0.4.9-dev20140206_directx\bin\..\mods\doors
20:37:45: ERROR[main]: mod "mesecons_alias" has unsatisfied dependencies: "mesecons"
20:37:45: ERROR[main]: mod "mesecons_blinkyplant" has unsatisfied dependencies: "mesecons"
20:37:45: ERROR[main]: mod "mesecons_button" has unsatisfied dependencies: "mesecons" "mesecons_receiver"
20:37:45: ERROR[main]: mod "mesecons_compatibility" has unsatisfied dependencies: "mesecons"
20:37:45: ERROR[main]: mod "mesecons_delayer" has unsatisfied dependencies: "mesecons"
20:37:45: ERROR[main]: mod "mesecons_detector" has unsatisfied dependencies: "mesecons" "mesecons_materials"
20:37:45: ERROR[main]: mod "mesecons_extrawires" has unsatisfied dependencies: "mesecons"
20:37:45: ERROR[main]: mod "mesecons_gates" has unsatisfied dependencies: "mesecons" "mesecons_delayer" "mesecons_materials" "mesecons_microcontroller" "mesecons_torch"
20:37:45: ERROR[main]: mod "mesecons_hydroturbine" has unsatisfied dependencies: "mesecons"
20:37:45: ERROR[main]: mod "mesecons_insulated" has unsatisfied dependencies: "mesecons"
20:37:45: ERROR[main]: mod "mesecons_lamp" has unsatisfied dependencies: "mesecons"
20:37:45: ERROR[main]: mod "mesecons_lightstone" has unsatisfied dependencies: "mesecons"
20:37:45: ERROR[main]: mod "mesecons_luacontroller" has unsatisfied dependencies: "mesecons"
20:37:45: ERROR[main]: mod "mesecons_materials" has unsatisfied dependencies: "mesecons"
20:37:45: ERROR[main]: mod "mesecons_microcontroller" has unsatisfied dependencies: "mesecons"
20:37:45: ERROR[main]: mod "mesecons_movestones" has unsatisfied dependencies: "mesecons" "mesecons_materials" "mesecons_mvps"
20:37:45: ERROR[main]: mod "mesecons_mvps" has unsatisfied dependencies: "mesecons"
20:37:45: ERROR[main]: mod "mesecons_noteblock" has unsatisfied dependencies: "mesecons"
20:37:45: ERROR[main]: mod "mesecons_pistons" has unsatisfied dependencies: "mesecons" "mesecons_mvps"
20:37:45: ERROR[main]: mod "mesecons_powerplant" has unsatisfied dependencies: "mesecons"
20:37:45: ERROR[main]: mod "mesecons_pressureplates" has unsatisfied dependencies: "mesecons"
20:37:45: ERROR[main]: mod "mesecons_random" has unsatisfied dependencies: "mesecons"
20:37:45: ERROR[main]: mod "mesecons_receiver" has unsatisfied dependencies: "mesecons"
20:37:45: ERROR[main]: mod "mesecons_solarpanel" has unsatisfied dependencies: "mesecons" "mesecons_materials"
20:37:45: ERROR[main]: mod "mesecons_switch" has unsatisfied dependencies: "mesecons"
20:37:45: ERROR[main]: mod "mesecons_torch" has unsatisfied dependencies: "mesecons"
20:37:45: ERROR[main]: mod "mesecons_walllever" has unsatisfied dependencies: "mesecons" "mesecons_receiver"
20:37:45: ERROR[main]: mod "beds" has unsatisfied dependencies: "wool"
20:37:45: ERROR[main]: mod "farming_plus" has unsatisfied dependencies: "farming"
20:37:45: ERROR[main]: mod "lrfurn" has unsatisfied dependencies: "wool"
Any help would be appreciated
 

Next

Return to Mod Releases

Who is online

Users browsing this forum: No registered users and 48 guests

cron