[Mod] Mobs Redo [1.55] [mobs]
Re: [Mod] Mobs Redo [1.53] [mobs]
@PiJeyEe - MultiCraft is not an official Minetest client so no guarantee mods will work perfectly.
Note: I have updated mobs redo with a few additional nil checks incase it helps though.
Note: I have updated mobs redo with a few additional nil checks incase it helps though.
- thunderdog1138
- Member
- Posts: 66
- Joined: Sun Dec 08, 2019 00:45
- GitHub: thunderdog1138
- In-game: thunderdog
- Location: Venator-class Star Destroyer in the Xanadu System
Re: [Mod] Mobs Redo [1.53] [mobs]
I'm trying to make an arrow have a tail using the following code:
But when I run the game, the tail doesn't appear and the debug says:
The arrow otherwise works as intended. Am I doing something wrong?
Code: Select all
mobs:register_arrow("mobs_monster:blaster_red", {
visual = "sprite",
visual_size = {x = 1, y = 1},
textures = {"blaster_red.png"},
velocity = 50,
hit_player = function(self, player)
player:punch(self.object, 1.0, {
full_punch_interval = 1.0,
damage_groups = {fleshy = 6},
}, nil)
mobs:boom(self, self.object:get_pos(), 1, true)
end,
hit_mob = function(self, mob)
mob:punch(self.object, 1.0, {
full_punch_interval = 1.0,
damage_groups = {fleshy = 6},
}, nil)
mobs:boom(self, self.object:get_pos(), 1, true)
end,
hit_node = function(self, pos, node)
mobs:boom(self, pos, 1, true)
end,
tail = 1,
tail_texture = "blaster_red.png",
tail_size = 7
})
Code: Select all
2020-12-01 19:02:54: ERROR[Server]: Invalid field texture (expected string got table).
2020-12-01 19:02:54: ERROR[Server]: stack traceback:
2020-12-01 19:02:54: ERROR[Server]: [C]: in function 'add_particle'
2020-12-01 19:02:54: ERROR[Server]: ...est-5.3.0-win64\bin\..\games\star_wars\mods\mobs/api.lua:4060: in function <...est-5.3.0-win64\bin\..\games\star_wars\mods\mobs/api.lua:4044>
Check out my Star Wars subgame.
Re: [Mod] Mobs Redo [1.53] [mobs]
you missed tail_texture = "blaster_red.png" ..... here's how I did the tail in dungeon master's fireball:
Code: Select all
mobs:register_arrow("mobs_monster:fireball", {
visual = "sprite",
visual_size = {x = 1, y = 1},
textures = {"mobs_fireball.png"},
collisionbox = {-0.1, -0.1, -0.1, 0.1, 0.1, 0.1},
velocity = 7,
tail = 1,
tail_texture = "mobs_fireball.png",
tail_size = 10,
glow = 5,
expire = 0.1,
on_activate = function(self, staticdata, dtime_s)
-- make fireball indestructable
self.object:set_armor_groups({immortal = 1, fleshy = 100})
end,
-- direct hit, no fire... just plenty of pain
hit_player = function(self, player)
player:punch(self.object, 1.0, {
full_punch_interval = 1.0,
damage_groups = {fleshy = 8},
}, nil)
end,
hit_mob = function(self, player)
player:punch(self.object, 1.0, {
full_punch_interval = 1.0,
damage_groups = {fleshy = 8},
}, nil)
end,
-- node hit
hit_node = function(self, pos, node)
mobs:boom(self, pos, 1)
end
})
- thunderdog1138
- Member
- Posts: 66
- Joined: Sun Dec 08, 2019 00:45
- GitHub: thunderdog1138
- In-game: thunderdog
- Location: Venator-class Star Destroyer in the Xanadu System
Re: [Mod] Mobs Redo [1.53] [mobs]
Thanks, it seems I made a mistake and placed the wrong version of the game into the game folder. It works now.
Check out my Star Wars subgame.
- PiJeyEe
- Member
- Posts: 17
- Joined: Wed Nov 04, 2020 03:58
- GitHub: PiJeyEe
- IRC: PiJeyEe
- In-game: Pathreen
Re: [Mod] Mobs Redo [1.53] [mobs]
Mods are working perfectly and I have installed a lot, even the textures I made was reflecting to theirs. The only mod thats keep crashing was this and I think it is only an issue between mobs_monsters and mobs redo.
If I can ask you for infos while fixing it I would gladly appreciate. Thanks!
Re: [Mod] Mobs Redo [1.53] [mobs]
Hello! I have a question about mobs in general. I have tried this mod with mobs_monster, mobs_mc, and nssm (your version and also nppx). My game is empty. I'm the only one there. I have occasionally gotten a monster or farm animal. Never got nssm to work (tried everything). Is it possible to set the spawn rate so high you can spawn a monster every 30 seconds? This is what I want. I tried to edit your scripting but I could not get it work. I want my game to murder the crap out of me.
Thanks!
Thanks!
Re: [Mod] Mobs Redo [1.53] [mobs]
@revevil - the api has a number of settings that you can play with to increase mob spawning, mob_chance_multiplier is one as well as mob_active_limit :
https://notabug.org/TenPlus1/mobs_redo/ ... i.txt#L688
https://notabug.org/TenPlus1/mobs_redo/ ... i.txt#L688
Re: [Mod] Mobs Redo [1.53] [mobs]
TenPlus1 - Thank you getting back to me so fast. I finally got it to work! That page explained exactly what I did wrong. I thought by raising the mob chance multiplier I was increasing the chances of mobs spawning... (slaps own head) I had the setting on 1 million! So I dropped it to .5 and finally saw a rabbit. So... I decided to go nuts and set the multiplier to .01. It was like the Discovery channel! My world came to life everywhere! Although, I may raise that up still to not be so ridiculous. Also, I got the Animals mod to work and Not So Simple Mobs. Could not get the Monsters mod to work, but it was working a few days ago for sure. EXCELLENT job on those mods btw!
Re: [Mod] Mobs Redo [1.53] [mobs]
I actually got in a fight with the giant duck boss this morning. oh I thought it would be no big deal to walk up to him and swing my lightsaber. He summoned so many ducks they pinned me down and I could not move. I tried to attack them back but it was too overwhelming. So I put down a block of extreme mese tnt and blew my town up. Ducks went flying everywhere and I got a weird message from the server that said it detected a lot of objects in a small space and deleted all of them. Strangely enough that huge bomb did not blow up the duck boss. Those bosses from nssm are awesome!
Re: [Mod] Mobs Redo [1.53] [mobs]
@revevil - the ducks aren't the worst, wait until you meet masticone and morgut's etc. those are horrid things to deal with :P
Updated to Version 1.54:
- Simplified breeding function, child mobs take 20 minutes to grow up, use food to speed this up.
- Tweaked mob death slightly (Mob becomes ethereal)
- Updated API.txt file (self.state information)
- Ability to have mob spin while dying
- on_flop function added
- air_damage added
- Tweaked mob death slightly (Mob becomes ethereal)
- Updated API.txt file (self.state information)
- Ability to have mob spin while dying
- on_flop function added
- air_damage added
- debiankaios
- Member
- Posts: 206
- Joined: Thu Dec 03, 2020 12:48
- In-game: debiankaios Nowe
- Location: germany
- Contact:
Re: [Mod] Mobs Redo [1.54] [mobs]
I scripting my own mob, but if i hit him he is + -100 blocks further. How can I set that to + -5?
-
- Member
- Posts: 261
- Joined: Tue Apr 14, 2020 16:03
- GitHub: cuthbert
Re: [Mod] Mobs Redo [1.53] [mobs]
sounds like you have created a cursed world too
did the giant duck boss have 3 heads ?.not had loads of ducks attacking me yet, but had the same message but was not aware it was NSSM .
Project BrutalTest...hide your Petz
- debiankaios
- Member
- Posts: 206
- Joined: Thu Dec 03, 2020 12:48
- In-game: debiankaios Nowe
- Location: germany
- Contact:
Re: [Mod] Mobs Redo [1.53] [mobs]
No I have copy the mesemob Bambusmann has me send textures and i programming a alien for our alienmodcuthbertdoublebarrel wrote: ↑Sun Dec 06, 2020 13:13sounds like you have created a cursed world too
did the giant duck boss have 3 heads ?.not had loads of ducks attacking me yet, but had the same message but was not aware it was NSSM .
Re: [Mod] Mobs Redo [1.53] [mobs]
Yeah masticone is my least favorite enemy! Just keep slashing them and they multiply. You know I've just been leaving the spawn rate multiplier at 1.0, and it's been fine. I've still got damage turned off though. I think my next game I'm going to leave it on and see if I can survive... its just more fun to have a challenge.
Re: [Mod] Mobs Redo [1.54] [mobs]
Hello everyone and thanks to the author of this mod!
I'm new to Minetest and I'm setting up a server running Minetest Game with some mods, looking to add mobs I found this one that seems really good! But I also was looking to add hunger, so my question is: is there a hunger mod that integrates well with this one? In case I have to edit some settings to get the two mods working togheter, could you please point me to the relevant information? I know that this question has been likely already answered, but the mod mentioned in the first posts doesn't seem to be mantained anymore and reading 2166 posts looking for the answer is far from ideal :)
Thank you for your suggestions.
I'm new to Minetest and I'm setting up a server running Minetest Game with some mods, looking to add mobs I found this one that seems really good! But I also was looking to add hunger, so my question is: is there a hunger mod that integrates well with this one? In case I have to edit some settings to get the two mods working togheter, could you please point me to the relevant information? I know that this question has been likely already answered, but the mod mentioned in the first posts doesn't seem to be mantained anymore and reading 2166 posts looking for the answer is far from ideal :)
Thank you for your suggestions.
Re: [Mod] Mobs Redo [1.54] [mobs]
GTP - Check out the Stamina mod, it adds hunger and sprint as well as drunk effects when in use with wine mod :)
https://content.minetest.net/packages/TenPlus1/stamina/
https://content.minetest.net/packages/TenPlus1/stamina/
Re: [Mod] Mobs Redo [1.54] [mobs]
Thank you TenPlus1!
Since you're the author of both mods, I would suppose that they integrate without having to edit anything. Is that correct?
Since you're the author of both mods, I would suppose that they integrate without having to edit anything. Is that correct?
Re: [Mod] Mobs Redo [1.54] [mobs]
GPT - Sofar was the original author although both forks are quite different from one another now :) and yes it will simply work without having to tweak anything, like most of my mods (ethereal ng, farming redo, invisibility, lucky blocks etc :)
Re: [Mod] Mobs Redo [1.54] [mobs]
TenPlus1: I finally did it, graduated from creative mode to survival mode I think. I turned on "Enable Damage" and installed your fork of the hunger and stamina mod. WOW. I thought I was a good minetest player before, but I was not. =( I have never had to run so much for my life. Definitely puts things in a different perspective. I made a homebase by a plains/jungle biome, but I've been forced to evacuate. The spiders from the nssm mod took over so bad I didn't feel like messing with the webs, so I moved to another biome. It's harder but more fun now. Having it too easy sucks. And your modding skills are badass! I'm not going to be going back to creative mode. I want a challenge.
Re: [Mod] Mobs Redo [1.54] [mobs]
hehe, glad to see you've entered jumanji mode and still having fun :)
Re: [Mod] Mobs Redo [1.54] [mobs]
I am, but I can survive at the surface stuff. Where my skills lack is safely exploring caves. I started making mineshafts to avoid the mobs in the caves. I am using the illumination mod for light, but I swear I need the duck tape mod from doom 3. I just want to duck tape a torch to my pickaxe. =) I could try the light fixer in worldedit, but I feel like its too cheaty.
- twoelk
- Member
- Posts: 1413
- Joined: Fri Apr 19, 2013 16:19
- GitHub: twoelk
- IRC: twoelk
- In-game: twoelk
- Location: northern Germany
Re: [Mod] Mobs Redo [1.54] [mobs]
a glowing pickaxe? now that might be a neat feature for a mese tool.
that way mese tools need not be stronger than diamond coated ones but could start glowing when used instead to add value.
that way mese tools need not be stronger than diamond coated ones but could start glowing when used instead to add value.
-
- New member
- Posts: 5
- Joined: Thu Dec 03, 2020 14:04
Re: [Mod] Mobs Redo [1.54] [mobs]
Can someone please explain to me why my animals (chickens mostly, but also sheep & cows) are disappearing or dying in their pens? I've gone on 3 lengthy quests to find chickens, but they keep dying after I get them in a pen. Yes, they are tamed. Do they need to be fed? Watered? I have the Regional Weather Bundle mod - is the weather killing them?
HOW DO I KEEP THEM ALIVE?!
On a related question, how do I hatch the chicken eggs?
HOW DO I KEEP THEM ALIVE?!
On a related question, how do I hatch the chicken eggs?
Who is online
Users browsing this forum: No registered users and 6 guests