1 (edited by sfan5 2013-01-26 21:09:11)

Topic: [Mod] Particles Mod [0.3.1] [particles]

This Mod adds Digging-Particles and other Particles.
License: GPLv2 (applies to all parts)
Depends: default
Supported Mods: (Digging Particles)

  • Mesecons

Download 0.3.1: http://ubuntuone.com/4uNGNDnMrA5LDhyTvscbP9
Download 0.3: http://ubuntuone.com/5paKbx6dbw8Rr7H0sa8UAo
Download 0.2: http://ubuntuone.com/4qLa6HmnxZi0UGeq5jZrCa
Download 0.1: http://ubuntuone.com/0C05AG6hlnU7ezklDRSnFG
Screenshots:
http://i.imgur.com/7EcOO.png
http://i.imgur.com/kSYYZ.png

Info for Modders:
If you want Digging Particle Support for your Mod make a List with all Block and their Color
Example:

--== Modname ==--
{"modname:my_block1", "gray"},
{"modname:my_block2", "sandcolor"},

Available Colors:

  • black

  • brown

  • gray

  • green

  • lightgray

  • red

  • darksandcolor

  • sandcolor

  • white

  • yellow

If you need extra Colors make a Texture for them called p_mycolor.png in the texture Folder.
Send me the List and extra Colors (if there are any) and i'll include it

My Mods: Nuke Mod WorldEdit Particles and working on Mesecons
Subscribe me on YouTube if you like my Stuff
My Minetest Builds for Windows

Re: [Mod] Particles Mod [0.3.1] [particles]

No lagggg..... Freaking awesome.

<Pixelized> yup the mpaa has some pretty fast seeders =)

Re: [Mod] Particles Mod [0.3.1] [particles]

Jordach wrote:

No lagggg..... Freaking awesome.

Thanks, can you make a Screenshot for me?

My Mods: Nuke Mod WorldEdit Particles and working on Mesecons
Subscribe me on YouTube if you like my Stuff
My Minetest Builds for Windows

Re: [Mod] Particles Mod [0.3.1] [particles]

Ok, will do.

<Pixelized> yup the mpaa has some pretty fast seeders =)

Re: [Mod] Particles Mod [0.3.1] [particles]

Ok, heres your pics!

Torched.

http://i.imgur.com/7EcOO.png

Meseconned.

http://i.imgur.com/kSYYZ.png

Also, I made a font map, so no more Lucida font!

<Pixelized> yup the mpaa has some pretty fast seeders =)

Re: [Mod] Particles Mod [0.3.1] [particles]

Jordach wrote:

Ok, heres your pics!

Torched.

http://i.imgur.com/7EcOO.png

Meseconned.

http://i.imgur.com/kSYYZ.png

Also, I made a font map, so no more Lucida font!

+1 for the Font Map
Thx for the Screens

My Mods: Nuke Mod WorldEdit Particles and working on Mesecons
Subscribe me on YouTube if you like my Stuff
My Minetest Builds for Windows

Re: [Mod] Particles Mod [0.3.1] [particles]

Using the MC font works well at 11 in size. :D

<Pixelized> yup the mpaa has some pretty fast seeders =)

Re: [Mod] Particles Mod [0.3.1] [particles]

Freakin awesome!!

Minetest is the shizneez!
Minetest.com Editor. The one stop shop to all your textures, mods, and servers:D

Re: [Mod] Particles Mod [0.3.1] [particles]

i get low fps then it jumps after i walk around abit

Zen S.D.

The next generation of tranquility!
malheureusement mon français n'est pas bon :<
Owner of the Zelo's
In game name: MuadTralk, spdtainted, sdzen, sd zen, sdzeno

Re: [Mod] Particles Mod [0.3.1] [particles]

nice..could you make the particles spawn at the torch and delete a little faster?

I give up on the politics, look for me in Minecraftforum! I'll be doing some basic mods.

Re: [Mod] Particles Mod [0.3.1] [particles]

it looks form the init that that is very possible with some tweaking

Zen S.D.

The next generation of tranquility!
malheureusement mon français n'est pas bon :<
Owner of the Zelo's
In game name: MuadTralk, spdtainted, sdzen, sd zen, sdzeno

12 (edited by Nemo08 2012-02-26 21:09:43)

Re: [Mod] Particles Mod [0.3.1] [particles]

jordan4ibanez wrote:

nice..could you make the particles spawn at the torch and delete a little faster?

init.lua:

SMOKE = {
    physical = true,
    collisionbox = {-0.1,-0.1,-0.1,0,0,0},
    visual = "sprite",
    textures = {"smoke.png"},
    on_step = function(self, dtime)
        self.object:setacceleration({x=0, y=0.5, z=0})
        self.timer = self.timer + dtime
        if self.timer > 3 then
            self.object:remove()
        end
    end,
    timer = 0,
}
minetest.register_entity("particles:smoke", SMOKE)
minetest.register_abm({
    nodenames = {"default:torch"},
    interval = 2,
    chance = 10,
    action = function(pos)
        minetest.env:add_entity({x=pos.x,y=pos.y-0.25,z=pos.z}, "particles:smoke")
    end,
})

if minetest.get_modpath("jeija") ~= nil then -- Mesecons is installed
    MESECONDUST = {
        physical = true,
        collisionbox = {-0.1,-0.1,-0.1,0,0,0},
        visual = "sprite",
        textures = {"mesecondust.png"},
        on_step = function(self, dtime)
            self.timer = self.timer + dtime
            if self.timer > 2.5 then
                self.object:remove()
            end
        end,
        timer = 0,
    }
    minetest.register_entity("particles:mesecondust", MESECONDUST)
    minetest.register_abm({
        nodenames = {"jeija:mesecon_on","jeija:wall_lever_on","jeija:mesecon_torch_on"},
        interval = 1,
        chance = 5,
        action = function(pos)
            minetest.env:add_entity({x=pos.x,y=pos.y,z=pos.z}, "particles:mesecondust")
        end,
    })
end

deleted after 3 sec, and spawned at torches (?? im little confused by y=pos.y-0.25)

13 (edited by Jordach 2012-02-26 21:47:26)

Re: [Mod] Particles Mod [0.3.1] [particles]

nemo, y=pos.y-0.25 might be a lua thingy. mt may read a positive y as down.

ah, I see now, sfan did so that the smoke arises from the node, not spawning.

<Pixelized> yup the mpaa has some pretty fast seeders =)

Re: [Mod] Particles Mod [0.3.1] [particles]

i find that y=pos.y+0.27 is better for height of the entity but thats my opinion

Zen S.D.

The next generation of tranquility!
malheureusement mon français n'est pas bon :<
Owner of the Zelo's
In game name: MuadTralk, spdtainted, sdzen, sd zen, sdzeno

15 (edited by Nemo08 2012-02-26 21:57:47)

Re: [Mod] Particles Mod [0.3.1] [particles]

Jordach wrote:

nemo, y=pos.y-0.25 might be a lua thingy. mt may read a positive y as down.

I'm know that it mean, i'm somewhat familiar with the mod writing ))) at that moment i not test posted code. y-0.25 just looks strange..

this will be ok:

 SMOKE = {
    physical = true,
    collisionbox = {-0.1,-0.1,-0.1,0,0,0},
    visual = "sprite",
    textures = {"smoke.png"},
    on_step = function(self, dtime)
        self.object:setacceleration({x=0, y=0.5, z=0})
        self.timer = self.timer + dtime
        if self.timer > 3 then
            self.object:remove()
        end
    end,
    timer = 0,
}
minetest.register_entity("particles:smoke", SMOKE)
minetest.register_abm({
    nodenames = {"default:torch"},
    interval = 2,
    chance = 10,
    action = function(pos)
        minetest.env:add_entity({x=pos.x,y=pos.y+0.5,z=pos.z}, "particles:smoke")
    end,
})

if minetest.get_modpath("jeija") ~= nil then -- Mesecons is installed
    MESECONDUST = {
        physical = true,
        collisionbox = {-0.1,-0.1,-0.1,0,0,0},
        visual = "sprite",
        textures = {"mesecondust.png"},
        on_step = function(self, dtime)
            self.timer = self.timer + dtime
            if self.timer > 2.5 then
                self.object:remove()
            end
        end,
        timer = 0,
    }
    minetest.register_entity("particles:mesecondust", MESECONDUST)
    minetest.register_abm({
        nodenames = {"jeija:mesecon_on","jeija:wall_lever_on","jeija:mesecon_torch_on"},
        interval = 1,
        chance = 5,
        action = function(pos)
            minetest.env:add_entity({x=pos.x,y=pos.y,z=pos.z}, "particles:mesecondust")
        end,
    })
end

Re: [Mod] Particles Mod [0.3.1] [particles]

sdzen wrote:

i find that y=pos.y+0.27 is better for height of the entity but thats my opinion

not see ur reply)

Re: [Mod] Particles Mod [0.3.1] [particles]

How about particles for digging too?

18 (edited by jordan4ibanez 2012-02-27 01:10:53)

Re: [Mod] Particles Mod [0.3.1] [particles]

sfan should be able to make particle that use lua..i think i might give it a crack

I give up on the politics, look for me in Minecraftforum! I'll be doing some basic mods.

Re: [Mod] Particles Mod [0.3.1] [particles]

jordan4ibanez wrote:

sfan should be able to make particle that use lua..i think i might give it a crack

That would be amazing!

20 (edited by Jeija 2012-02-28 14:44:54)

Re: [Mod] Particles Mod [0.3.1] [particles]

stormrider2 wrote:

How about particles for digging too?

I tried that.
Unfortunately
1) Performance is bad
2) It looks like entities can only be set at total numbers as coordinates (so 1,2,3 works, but not 1.1,2.2,3.3); This makes it look quite bad

EDIT: 2) does not seem to be true

Redstone for minetest: Mesecons (mesecons.net)

Re: [Mod] Particles Mod [0.3.1] [particles]

post it damnit

I give up on the politics, look for me in Minecraftforum! I'll be doing some basic mods.

Re: [Mod] Particles Mod [0.3.1] [particles]

jordan4ibanez wrote:

post it damnit

This is EXPERIMENTAL.

PARTICLES_AMOUNT=20
PARTICLES_TIME=0.9

DIRTPARTICLES={
 physical = false,
    collisionbox = {-0.1,-0.1,-0.1,0,0,0},
    visual = "sprite",
    visual_size = {x=0.1, y=0.1},
    textures = {"default_dirt.png"},
    on_activate = function(self)
        self.object:setvelocity({x=math.random(-5,5)/30, y=math.random(-1,12)/6, z=math.random(-5,5)/30})
        self.object:setacceleration({x=0+math.random(-5,5)/30, y=-5, z=0+math.random(-5,5)/30})
    end,
    on_step = function(self, dtime)
        self.timer = self.timer + dtime
        if self.timer > PARTICLES_TIME then
            self.object:remove()
        end
    end,
    timer = 0,
}

minetest.register_entity("particles:dirtparticles", DIRTPARTICLES);


ADDDIRTPARTICLES=function(pos, node, puncher)
    if node.name=="default:dirt" then
        for i=0,PARTICLES_AMOUNT,1 do
            local obj=minetest.env:add_entity({x=pos.x+math.random(-5,5)/15, y=pos.y+0.5, z=pos.z+math.random(-5,5)/15}, "particles:dirtparticles")
        end
    end
end


minetest.register_on_punchnode(ADDDIRTPARTICLES)
minetest.register_on_dignode(ADDDIRTPARTICLES)

Only works with dirt (without grass).
<ironic>As you can see, it is a lot of fun with that incredibly good performance -.-</ironic>

Redstone for minetest: Mesecons (mesecons.net)

Re: [Mod] Particles Mod [0.3.1] [particles]

BUT THAT LOOKS GOOD AND HAS GOOD PERFORMANCE! for lua!

I give up on the politics, look for me in Minecraftforum! I'll be doing some basic mods.

Re: [Mod] Particles Mod [0.3.1] [particles]

Particles Mod 0.2 Preview
http://youtu.be/B3wGDWNmz0o

My Mods: Nuke Mod WorldEdit Particles and working on Mesecons
Subscribe me on YouTube if you like my Stuff
My Minetest Builds for Windows

Re: [Mod] Particles Mod [0.3.1] [particles]

where's the dl link? for 0.2?

<Pixelized> yup the mpaa has some pretty fast seeders =)