[Modpack] Creatures MOB-Engine [2.3.1] [cme]

Matsetes
Member
Posts: 70
Joined: Tue Sep 11, 2012 23:36

by Matsetes » Post

BlockMen wrote:
I will post an update next time, but until then not using the mod is the best way to prevent crashes i guess.
Thanks... I disabled it for now... Next update I will retry using it. <3

Rhys
Member
Posts: 379
Joined: Wed May 22, 2013 15:22

Re: [Mod] Creatures [1.1 beta] [creatures]

by Rhys » Post

Really nice models, love this mod. Could I just ask, where does all the inspiration and ideas come from for your mods, BlockMen? :)

User avatar
BlockMen
Developer
Posts: 768
Joined: Fri Mar 01, 2013 17:24
GitHub: BlockMen
Location: Germany

Re: [Mod] Creatures [1.1.1 beta] [creatures]

by BlockMen » Post

Update!(finally) Version 1.1.1 released

Changelog:
- Zombies have also a maximum lifetime now (~5min)
- Hostile mobs use line_of_sight() befor attacking
- Fix different crashes and other things
- Experimental spawning control (see below)

If you still experience too much spawned mobs you can reduce them by lowering this value or increasing this (spawn_day ) value

dethegeek
New member
Posts: 6
Joined: Sat Feb 22, 2014 18:58

Re: [Mod] Creatures [1.1.1 beta] [creatures]

by dethegeek » Post

Great !

Will try this version soon.

Can you explain the meaning of spawn_day ? This may help if I need to tweak it :)

cloweling
New member
Posts: 2
Joined: Fri Apr 25, 2014 16:35
IRC: cloweling
In-game: cloweling

Re: [Mod] Creatures [1.1.1 beta] [creatures]

by cloweling » Post

I want to thank you for doing a good job, really liked me, I have just one question.

creatures do not remove bone hearts does not hurt?

dethegeek
New member
Posts: 6
Joined: Sat Feb 22, 2014 18:58

Re: [Mod] Creatures [1.1.1 beta] [creatures]

by dethegeek » Post

Hi

I di a quick test without any other mod, and with all my mods enabled.

The latest improvements seems to solve my issue. I also noticed the creatures are spawned a better way : they are ramdomly and rather equally spread on the map. This is a very good improvement.

Thank you for your efforts.

User avatar
Calinou
Moderator
Posts: 3169
Joined: Mon Aug 01, 2011 14:26
GitHub: Calinou
IRC: Calinou
In-game: Calinou
Location: Troyes, France
Contact:

Re: [Mod] Creatures [1.1.1 beta] [creatures]

by Calinou » Post

BlockMen wrote:Ghosts have 15 HP and don't drop any items atm (might be changed if i have an idea what they could drop; suggestions welcome).
Flour? String? Mese crystal fragments?

gsmanners
Member
Posts: 159
Joined: Fri Jan 10, 2014 21:37

Re: [Mod] Creatures [1.1.1 beta] [creatures]

by gsmanners » Post

This is a very intriguing update. I'm going to have to check this one out, fo sure.

Rhys
Member
Posts: 379
Joined: Wed May 22, 2013 15:22

Re: [Mod] Creatures [1.1.1 beta] [creatures]

by Rhys » Post

Would be cool if sheep could follow you with wheat, so people can make a sheep pen for them. And also, I think the ghosts should drop string or paper, or even both?

User avatar
Krock
Developer
Posts: 4650
Joined: Thu Oct 03, 2013 07:48
GitHub: SmallJoker
Location: Switzerland
Contact:

Re: [Mod] Creatures [1.1.1 beta] [creatures]

by Krock » Post

Rhys wrote:Would be cool if sheep could follow you with wheat, so people can make a sheep pen for them. And also, I think the ghosts should drop string or paper, or even both?
ghosts better should drop fog or air.
Look, I programmed a bug for you. >> Mod Search Engine << - Mods by Krock - DuckDuckGo mod search bang: !mtmod <keyword here>

User avatar
BlockMen
Developer
Posts: 768
Joined: Fri Mar 01, 2013 17:24
GitHub: BlockMen
Location: Germany

Re: [Mod] Creatures [1.1.2 beta] [creatures]

by BlockMen » Post

Update! Version 1.1.2 released

Changelog:
- Sheeps follow you when holding wheat
- Added Shears (rightclick)
- Items are only droped (without player action) with builtin_item mod
^ so if e.g. a zombie dies because its getting day it won't drop an item (except you have the mention mod installed)

Crafting (Shears):
Image

AgentX
New member
Posts: 7
Joined: Sun May 11, 2014 05:16
In-game: AgentX

Re: [Mod] Creatures [1.1.2 beta] [creatures]

by AgentX » Post

Really love your mod, would like to know how to edit the damage the Ghosts and Zombies do, could you explain it to me? I've already changed the spawn rate and speed, just not sure how to change the damage.

Thanks

Mikerhinos
Member
Posts: 41
Joined: Sat Apr 05, 2014 08:17

Re: [Mod] Creatures [1.1.2 beta] [creatures]

by Mikerhinos » Post

Great mod !
Ghosts could drop souls, that could be used to create teleport portals, or nether portals.
Or used to "resurrect" : when you die and have a soul in inventory, you could use it to respawn at your bones ("You died, would you like to use 1 soul to resurrect here ? Yes - No, I prefer respawn the normal way").

gsmanners
Member
Posts: 159
Joined: Fri Jan 10, 2014 21:37

Re: [Mod] Creatures [1.1.2 beta] [creatures]

by gsmanners » Post

AgentX wrote:Really love your mod, would like to know how to edit the damage the Ghosts and Zombies do, could you explain it to me? I've already changed the spawn rate and speed, just not sure how to change the damage.

Thanks
Damage is controlled by the attack() method in init.lua:

Code: Select all

function creatures.attack(self, pos1, pos2, dist, range)
	if not self then return end
	if not pos1 or not pos2 then return end
	if minetest.line_of_sight(pos1,pos2) ~= true then
		return
	end
	if dist < range and self.attacking_timer > 0.6 then
		self.attacker:punch(self.object, 1.0,  {
				full_punch_interval=1.0,
				damage_groups = {fleshy=1}
		})
		self.attacking_timer = 0
	end
end
As you can see, they need over 600ms of los to attack and to be in range. The damage is controlled by the group "fleshy" (which is also equal to 1).

AgentX
New member
Posts: 7
Joined: Sun May 11, 2014 05:16
In-game: AgentX

Re: [Mod] Creatures [1.1.2 beta] [creatures]

by AgentX » Post

Thanks a lot man! Really helped, now they're an actual threat! :D

gsmanners
Member
Posts: 159
Joined: Fri Jan 10, 2014 21:37

Re: [Mod] Creatures [1.1.2 beta] [creatures]

by gsmanners » Post

They are creepy, and they always sound like they're right on top of you, but they hardly seem threatening. I even just killed one through a wall, recently (I think it was because I could reach them diagonally, but I'm not too sure).

gsmanners
Member
Posts: 159
Joined: Fri Jan 10, 2014 21:37

Re: [Mod] Creatures [1.1.2 beta] [creatures]

by gsmanners » Post

I'm not too concerned about most mobs, but the sheep are getting a little too thick. I think this is because the function for limiting spawns does not survive server resets. The entities, however, will persist between resets. This may not be a huge deal for a multiplayer server, but this could easily give you thousands of mobs if you play in singleplayer mode for a while.

Maybe just reset the sheep lifetime if there's a player nearby. That might work out better than checking for groups.

User avatar
BlockMen
Developer
Posts: 768
Joined: Fri Mar 01, 2013 17:24
GitHub: BlockMen
Location: Germany

Re: [Mod] Creatures [1.1.2 beta] [creatures]

by BlockMen » Post

gsmanners wrote:I'm not too concerned about most mobs, but the sheep are getting a little too thick. I think this is because the function for limiting spawns does not survive server resets. The entities, however, will persist between resets. This may not be a huge deal for a multiplayer server, but this could easily give you thousands of mobs if you play in singleplayer mode for a while.

Maybe just reset the sheep lifetime if there's a player nearby. That might work out better than checking for groups.
Hmm, yes, the spawning control needs some more work... :\

And no, i would like to keep the "mates"/group thing for sheep, i will take a look at it and see what can be done for tweaking

MANISGONE
New member
Posts: 7
Joined: Thu Nov 14, 2013 20:27

Re: [Mod] Creatures [1.1.2 beta] [creatures]

by MANISGONE » Post

This mod is great but, how can I make them hit harder? They just seem so weak and unintimidating. I've looked in the lua but couldn't figure it out.

Edit:Nevermind, I'm an idiot...
Last edited by MANISGONE on Sat May 17, 2014 23:57, edited 2 times in total.

gsmanners
Member
Posts: 159
Joined: Fri Jan 10, 2014 21:37

Re: [Mod] Creatures [1.1.2 beta] [creatures]

by gsmanners » Post

Got a curious error just now...

Code: Select all

22:23:04: ERROR[main]: ServerError: ...ome/genma/.minetest/mods/minetest/creatures/init.lua:57: attempt to perform arithmetic on field '?' (a nil value)
22:23:04: ERROR[main]: stack traceback:
22:23:04: ERROR[main]: 	...ome/genma/.minetest/mods/minetest/creatures/init.lua:57: in function 'func'
And, of course, line 57 is the + 1 thing in this block:

Code: Select all

				if obj then
					creatures.spawned[m_name] = creatures.spawned[m_name] + 1
					minetest.log("action", "Spawned "..mob.." at ("..pos.x..","..pos.y..","..pos.z..")")
				end
I think the problem there is something to do with the minetest.after and the use of m_name across that boundary. I suspect that the after clause doesn't really have a clean set of pointers to work with.

User avatar
LuxAtheris
Member
Posts: 169
Joined: Fri Oct 25, 2013 00:54
Location: Aether

Re: [Mod] Creatures [1.1.2 beta] [creatures]

by LuxAtheris » Post

May I ask if how do you use the spawners? Cause I cant seem to see any zombie to spawn by it.
Thanks in advance. :D

gsmanners
Member
Posts: 159
Joined: Fri Jan 10, 2014 21:37

Re: [Mod] Creatures [1.1.2 beta] [creatures]

by gsmanners » Post

The zombie spawner has range = 17, max = 6, light level = 7. Most light sources are 13, so you'll need darkness around the spawner. The range is used for counting the mobs (I think you can have a total of max within the range). You'll also need a couple of air blocks within 5 blocks of the spawner for any new mobs to appear.

User avatar
LuxAtheris
Member
Posts: 169
Joined: Fri Oct 25, 2013 00:54
Location: Aether

Re: [Mod] Creatures [1.1.2 beta] [creatures]

by LuxAtheris » Post

So how do you exactly use it? Can you give me any example, because Im very confused.

gsmanners
Member
Posts: 159
Joined: Fri Jan 10, 2014 21:37

Re: [Mod] Creatures [1.1.2 beta] [creatures]

by gsmanners » Post

Well, you put a spawner into a dark room and wait. If the area isn't dark, then you can wall it up.

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

Re: [Mod] Creatures [1.1.2 beta] [creatures]

by Inocudom » Post

I recently noticed a fatal flaw with this mod; either there ends up being way too many sheep/ghosts/zombies, or too many spawn at one time. Also, why are zombies immune to mesecons pressure plates?

Post Reply

Who is online

Users browsing this forum: No registered users and 37 guests