Request: Iron golem mod

Post Reply
DigAmy
Member
Posts: 44
Joined: Sun Aug 11, 2013 13:22
Location: Torre del lago, Toscana,Italy

Request: Iron golem mod

by DigAmy » Post

I have an idea: create an iron golem mod to help the player to defeat the zombies from the zombie-waves mod... can anyone do that? Please :) ^_^
DigAmy can do his work: request mod XD

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

by Rhys » Post

DigAmy wrote:I have an idea: create an iron golem mod to help the player to defeat the zombies from the zombie-waves mod... can anyone do that? Please :) ^_^
Uh...

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

by TenPlus1 » Post

As far as I've heard, when the Mob Framework is complete you can have a soldier NPC protect you and your builds...

sloantothebone
Member
Posts: 26
Joined: Thu Aug 28, 2014 18:42

Re: Request: Iron golem mod

by sloantothebone » Post

Hmm... How do we write a script that replaces a formation of nodes, such as 4 iron blocks and a pumpkin, with a mob?

User avatar
Napiophelios
Member
Posts: 1035
Joined: Mon Jul 07, 2014 01:14
GitHub: Napiophelios
IRC: Nappi
In-game: Nappi

Re: Request: Iron golem mod

by Napiophelios » Post

sloantothebone wrote:Hmm... How do we write a script that replaces a formation of nodes, such as 4 iron blocks and a pumpkin, with a mob?
Teleports mod does something similar by redifining the diamond block node.

Code: Select all

on_place = function(itemstack, placer, pointed_thing)
		local stack = ItemStack("default:diamondblock")
		local pos = pointed_thing.above
		if
			minetest.get_node({x=pos.x+1,y=pos.y,z=pos.z}).name=="default:diamondblock" and
			minetest.get_node({x=pos.x+1,y=pos.y,z=pos.z+1}).name=="default:diamondblock" and
			minetest.get_node({x=pos.x+1,y=pos.y,z=pos.z-1}).name=="default:diamondblock" and
			minetest.get_node({x=pos.x-1,y=pos.y,z=pos.z}).name=="default:diamondblock" and
			minetest.get_node({x=pos.x-1,y=pos.y,z=pos.z+1}).name=="default:diamondblock" and
			minetest.get_node({x=pos.x-1,y=pos.y,z=pos.z-1}).name=="default:diamondblock" and
			minetest.get_node({x=pos.x,y=pos.y,z=pos.z+1}).name=="default:diamondblock" and
			minetest.get_node({x=pos.x,y=pos.y,z=pos.z-1}).name=="default:diamondblock"
		then
			stack = ItemStack("teleports:teleport")
		end

twoelk
Member
Posts: 1482
Joined: Fri Apr 19, 2013 16:19
GitHub: twoelk
IRC: twoelk
In-game: twoelk
Location: northern Germany

Re: Request: Iron golem mod

by twoelk » Post

craftable mobs?
greetings you followers of Rabi Loew and doctor Frankenstein.

CWz
Member
Posts: 197
Joined: Tue Dec 24, 2013 17:01
GitHub: chaoswormz
IRC: CWz
In-game: CWz
Location: Banana Land

Re: Request: Iron golem mod

by CWz » Post

Do we really need to copy more mobs from minecraft? can't we come up with original mobs?

User avatar
Christian9
Member
Posts: 338
Joined: Fri Sep 19, 2014 20:29
In-game: Christian9
Location: Hell Creek

Re: Request: Iron golem mod

by Christian9 » Post

i could make something similar maybe call them iron soldiers. there will be:
Small=half the players size
Medium=Player Size
Large=Double the player size

User avatar
Napiophelios
Member
Posts: 1035
Joined: Mon Jul 07, 2014 01:14
GitHub: Napiophelios
IRC: Nappi
In-game: Nappi

Re: Request: Iron golem mod

by Napiophelios » Post

CWz wrote:Do we really need to copy more mobs from minecraft? can't we come up with original mobs?
Maybe not for the main stream Minetest_game but I dont think it hurts to have this kinda stuff.
FFS I have added pumkin and melon helmets to 3-D Armor just cuz my kid digs it ha

Post Reply

Who is online

Users browsing this forum: No registered users and 54 guests