[Mod] Not So Simple Mobs [3.0] [nssm]

User avatar
TenPlus1
Member
Posts: 3700
Joined: Mon Jul 29, 2013 13:38
In-game: TenPlus1
Contact:

Re: [Mod] Not So Simple Mobs [3.0] [nssm]

by TenPlus1 » Post

Removed check_for_death calls, not required so should work ok now.

User avatar
bhree
Member
Posts: 169
Joined: Tue Jun 19, 2018 07:45
GitHub: bhree
IRC: bhree
In-game: bhree
Location: Alone In The Wild Land
Contact:

Re: [Mod] Not So Simple Mobs [3.0] [nssm]

by bhree » Post

Wow nssm has awaken again. Always keeping this mod.

User avatar
Andrey01
Member
Posts: 2574
Joined: Wed Oct 19, 2016 15:18
GitHub: Andrey2470T
In-game: Andrey01
Location: Russia, Moscow

Re: [Mod] Not So Simple Mobs [3.0] [nssm]

by Andrey01 » Post

bhree wrote:Wow nssm has awaken again. Always keeping this mod.
How?? Has npx begun to develop it again?

User avatar
bhree
Member
Posts: 169
Joined: Tue Jun 19, 2018 07:45
GitHub: bhree
IRC: bhree
In-game: bhree
Location: Alone In The Wild Land
Contact:

Re: [Mod] Not So Simple Mobs [3.0] [nssm]

by bhree » Post

Andrey01 wrote:
bhree wrote:Wow nssm has awaken again. Always keeping this mod.
How?? Has npx begun to develop it again?
TenPlus1 fix the nssm to be compatible with newer mobs redo. I use relatively original nssm with old mobs redo some monsters move in funny way (circling).

User avatar
grecaandreievich
Member
Posts: 11
Joined: Fri Aug 31, 2018 17:35

Re: [Mod] Not So Simple Mobs [3.0] [nssm]

by grecaandreievich » Post

npx wrote: Dependencies:
- default
- mobs_redo
- fire
- tnt
I am curious. Are those special documents I need to download so I can play with this mod? If that's correct, where can I get them?
Hola, papu.

User avatar
bhree
Member
Posts: 169
Joined: Tue Jun 19, 2018 07:45
GitHub: bhree
IRC: bhree
In-game: bhree
Location: Alone In The Wild Land
Contact:

Re: [Mod] Not So Simple Mobs [3.0] [nssm]

by bhree » Post

grecaandreievich wrote:
npx wrote: Dependencies:
- default
- mobs_redo
- fire
- tnt
I am curious. Are those special documents I need to download so I can play with this mod? If that's correct, where can I get them?
Those are required mods for nssm to work, default, fire and tnt are from minetest_game. mobs redo by tenplus1 can be found in this forum.

8975HA
Member
Posts: 37
Joined: Sat Jun 30, 2018 17:43
IRC: 8975HA
In-game: 8975HA

Re: [Mod] Not So Simple Mobs [3.0] [nssm]

by 8975HA » Post

So... NSSM is still alive ?

User avatar
TenPlus1
Member
Posts: 3700
Joined: Mon Jul 29, 2013 13:38
In-game: TenPlus1
Contact:

Re: [Mod] Not So Simple Mobs [3.0] [nssm]

by TenPlus1 » Post

8975HA - More like being maintained and fixing any bugs - https://notabug.org/TenPlus1/nssm

User avatar
bhree
Member
Posts: 169
Joined: Tue Jun 19, 2018 07:45
GitHub: bhree
IRC: bhree
In-game: bhree
Location: Alone In The Wild Land
Contact:

Re: [Mod] Not So Simple Mobs [3.0] [nssm]

by bhree » Post

It seems that tarantula's thick web is indestructible by any means. I just can't see them lie eternally, the only logic is it can only destroyed by using tarantula warhammer and I added simple lines of code. Please anyone make it better.

Code: Select all

minetest.register_node("nssm:thick_web", {
	description = "Thick Web",
	inventory_image = "thick_web.png",
	tile_images = {"thick_web.png"} ,
    drawtype = "firelike",
	paramtype = "light",
	walkable = false,
	pointable = true,
	diggable = true,
	buildable_to = false,
	drop = "",
	drowning = 2,
	liquid_renewable = false,
	liquidtype = "source",
	liquid_range= 0,
	liquid_alternative_flowing = "nssm:thick_web",
	liquid_alternative_source = "nssm:thick_web",
	liquid_viscosity = 30,
	groups = {flammable=2, liquid=1},
	
	on_punch = function(pos, node, puncher)
		if puncher:get_wielded_item():get_name() == "nssm:tarantula_warhammer" then
			minetest.sound_play("fire_fire.1", {pos=pos})			
			minetest.swap_node(pos, {name = "fire:basic_flame"})
		end
	end
})

thekiller81
New member
Posts: 3
Joined: Mon Apr 11, 2016 06:38
GitHub: thekiller81
IRC: thekiller81
In-game: thekiller81

Re: [Mod] Not So Simple Mobs [3.0] [nssm]

by thekiller81 » Post

hi, i am new with this. i got error when an item drop from monster

2018-09-15 21:11:57: ERROR[Main]: ServerError: AsyncErr: environment_Step: Runtime error from mod 'item_tweaks' in callback environment_Step(): ...n\..\mods\dreambuilder_modpack\item_tweaks/item_drop.lua:159: attempt to index global 'drops' (a function value)
2018-09-15 21:11:57: ERROR[Main]: stack traceback:
2018-09-15 21:11:57: ERROR[Main]: ...n\..\mods\dreambuilder_modpack\item_tweaks/item_drop.lua:159: in function 'moveTowards'
2018-09-15 21:11:57: ERROR[Main]: ...n\..\mods\dreambuilder_modpack\item_tweaks/item_drop.lua:205: in function <...n\..\mods\dreambuilder_modpack\item_tweaks/item_drop.lua:167>
2018-09-15 21:11:57: ERROR[Main]: ...minetest-0.4.17.1-win64\bin\..\builtin\game\register.lua:420: in function <...minetest-0.4.17.1-win64\bin\..\builtin\game\register.lua:400>
2018-09-15 21:11:57: ERROR[Main]: stack traceback:
2018-09-15 21:11:58: ACTION[Server]: singleplayer leaves game. List of players:

User avatar
bhree
Member
Posts: 169
Joined: Tue Jun 19, 2018 07:45
GitHub: bhree
IRC: bhree
In-game: bhree
Location: Alone In The Wild Land
Contact:

Re: [Mod] Not So Simple Mobs [3.0] [nssm]

by bhree » Post

i'm a noobie too, i think it has something to do with dreambuilder modpack. I'm not sure how but it modify dropped item by player and confuse mobs with player.

SnarkBoojum
New member
Posts: 5
Joined: Wed May 16, 2018 18:02
GitHub: SnarkBoojum

Re: [Mod] Not So Simple Mobs [3.0] [nssm]

by SnarkBoojum » Post

I'm pondering packaging this mod in Debian, but I'm a bit annoyed by the licensing and copyright assignment, see here: https://notabug.org/TenPlus1/nssm/issues/2

If npx could get in touch there, that would be quite helpful.

Thanks!

User avatar
Andrey01
Member
Posts: 2574
Joined: Wed Oct 19, 2016 15:18
GitHub: Andrey2470T
In-game: Andrey01
Location: Russia, Moscow

Re: [Mod] Not So Simple Mobs [3.0] [nssm]

by Andrey01 » Post

SnarkBoojum wrote:I'm pondering packaging this mod in Debian, but I'm a bit annoyed by the licensing and copyright assignment, see here: https://notabug.org/TenPlus1/nssm/issues/2

If npx could get in touch there, that would be quite helpful.

Thanks!
It looks like npx abandoned not only his development but the community and the game itself. Therefore all questions are to TenPlus1. He`s a manager of this mod now.

User avatar
TenPlus1
Member
Posts: 3700
Joined: Mon Jul 29, 2013 13:38
In-game: TenPlus1
Contact:

Re: [Mod] Not So Simple Mobs [3.0] [nssm]

by TenPlus1 » Post

Update:

- nssm license has been updated to LGPL-v3

https://notabug.org/TenPlus1

Chem871
Member
Posts: 999
Joined: Sat Aug 19, 2017 21:49
GitHub: Chemguy99
In-game: Chem Nyx
Location: My Basement's Attic

Re: [Mod] Not So Simple Mobs [3.0] [nssm]

by Chem871 » Post

I think the 'global check_for_death' is a deprecated function, or it isn't being used properly in the code, because several of the tools break the game when you try to use them. Also, how on earth is anyone supposed to beat the Morvalar boss mob? It just constantly keeps healing, and I can't make its health go down fast enough.
What is SCP-055?

User avatar
taikedz
Member
Posts: 698
Joined: Sun May 15, 2016 11:11
GitHub: taikedz
IRC: DuCake
In-game: DuCake
Location: Scotland, UK
Contact:

Re: [Mod] Not So Simple Mobs [3.0] [nssm]

by taikedz » Post

I'm gonna post for what it's worth at this point...

I've been doing a refactor of NSSM code so that it works correctly with recent versions of mobs_redo and 3d_armor, and to ensure it works not only as a singleplayer mod, but also as a server/multiplayer mod. Also deduplication of code (more of that to come) and file organisation for maintainability.

Some tweaks and adjustments, extra settings, more protection checks (spiderwebs are hell), fixed bugs, sever lag solutions (the spears finally work on servers!)

https://github.com/taikedz-mt/nssm

User avatar
TenPlus1
Member
Posts: 3700
Joined: Mon Jul 29, 2013 13:38
In-game: TenPlus1
Contact:

Re: [Mod] Not So Simple Mobs [3.0] [nssm]

by TenPlus1 » Post

this has already been done on the link above taiked

User avatar
taikedz
Member
Posts: 698
Joined: Sun May 15, 2016 11:11
GitHub: taikedz
IRC: DuCake
In-game: DuCake
Location: Scotland, UK
Contact:

Re: [Mod] Not So Simple Mobs [3.0] [nssm]

by taikedz » Post

tenplus1 I saw, I tried to merge your changes in at one point and realized you didn't even keep the commit history from the original repo... still on my todo, but I've been re-organising and splitting out the code to better manage it, at this point I can't even merge in your previous work.

I'm uncovering all sorts of bugs though, and unless you've been putting time into testing each and every facet of it, I'd be so bold as to say I might have made further headway on the corner cases, especially on making sure it works in a hosted environment...

Sokomine
Member
Posts: 4276
Joined: Sun Sep 09, 2012 17:31
GitHub: Sokomine
IRC: Sokomine
In-game: Sokomine

Re: [Mod] Not So Simple Mobs [3.0] [nssm]

by Sokomine » Post

After having seen how it works on the Not so simple server:

As each of these mobs is aggressive and attacks the player, the player is busy killing all those aggressors. Mob killing is a major undertaking. There ought to be a highscore for each player how many of each mob type he has defeated. Maybe a server-wide highscore as well?

Some of the mobs have fur (felucco, manticore, white wolf, ..). Those could be put on the floor as carpets. Perhaps with a small head attached. Armchairs, sofas and beds made out of those things the mobs drop at death might also be very decorative. Ant husks could be used as beer mugs.

In addition to the crafts, it would be nice to get a "reward" after killing a certain amount of mobs. Mob heads hung to the wall (as hunters do with innocent deer) - perhaps for killing the first one? And stuffed mobs to place in your house after having killed a much larger number.
A list of my mods can be found here.

User avatar
taikedz
Member
Posts: 698
Joined: Sun May 15, 2016 11:11
GitHub: taikedz
IRC: DuCake
In-game: DuCake
Location: Scotland, UK
Contact:

Re: [Mod] Not So Simple Mobs [3.0] [nssm]

by taikedz » Post

I LIKE THESE IDEAS!

Who wants to help make this happen? :-p

Leaderboard: I could probably knock out a leaderboard in a day, but not today because burning out. I can probably add something to at least start tracking now, and do the actual leaderboard later...

Carpets: I am a rubbish artist (someone needs to do carpet textures)

Trophy heads and mob plushies I have never done models (someone would have to do the heads, and their textures). But if someone wants to do those, I can add them. In the meantime, I could add itemframes of sorts... I note there are several implementations, so I'll have to check them out first
Last edited by taikedz on Sun Jan 20, 2019 21:38, edited 1 time in total.

User avatar
StarNinjas
Member
Posts: 411
Joined: Wed Mar 14, 2018 00:32
GitHub: starninjas
IRC: StarNinjas
In-game: J1
Location: Terrarca
Contact:

Re: [Mod] Not So Simple Mobs [3.0] [nssm]

by StarNinjas » Post

I may be able todo carpet textures.
Don't go to bed tonight, without knowing what would happen if you died. https://thegospelfilm.org/

User avatar
taikedz
Member
Posts: 698
Joined: Sun May 15, 2016 11:11
GitHub: taikedz
IRC: DuCake
In-game: DuCake
Location: Scotland, UK
Contact:

Re: [Mod] Not So Simple Mobs [3.0] [nssm]

by taikedz » Post

@StarNinjas that would be awesome :-)

I'm maintaining my fork here: https://github.com/taikedz-mt/nssm ; please do PR into it if you can find time !

Leaderboard: NSSM now tracks player's kills. You can see your own using '/killstats'. Actual leaderboard yet to come.

User avatar
StarNinjas
Member
Posts: 411
Joined: Wed Mar 14, 2018 00:32
GitHub: starninjas
IRC: StarNinjas
In-game: J1
Location: Terrarca
Contact:

Re: [Mod] Not So Simple Mobs [3.0] [nssm]

by StarNinjas » Post

How do they need to look? what size etc.
Don't go to bed tonight, without knowing what would happen if you died. https://thegospelfilm.org/

User avatar
taikedz
Member
Posts: 698
Joined: Sun May 15, 2016 11:11
GitHub: taikedz
IRC: DuCake
In-game: DuCake
Location: Scotland, UK
Contact:

Re: [Mod] Not So Simple Mobs [3.0] [nssm]

by taikedz » Post

I'd be integrating it as a {x=1,y=0.1,z=1} node, think "thin slices like in moreblocks" ; the textures by NPX are 16*16px so I'd stick with that...

User avatar
StarNinjas
Member
Posts: 411
Joined: Wed Mar 14, 2018 00:32
GitHub: starninjas
IRC: StarNinjas
In-game: J1
Location: Terrarca
Contact:

Re: [Mod] Not So Simple Mobs [3.0] [nssm]

by StarNinjas » Post

I see but what well the texture be? and animal head or just fur?
Don't go to bed tonight, without knowing what would happen if you died. https://thegospelfilm.org/

Post Reply

Who is online

Users browsing this forum: Bing [Bot] and 14 guests